Codeforces Round #228 (Div. 2)
做codeforces以来题目最水的一次
A题:
题意:就是用一堆数字来回减,直到减到最小值为止,再把所有最小值加,求这个值
sol: 简单数论题目,直接求所有数字的最大公约数即可
ps: 以前cf出过这道题目啊,出题人没救了 5分钟300人过
1 #include <cstdio>
2 #include <algorithm>
3 #include <cstring>
4 using namespace std;
5 const int MAX = ;
6 int num[MAX];
7 int gcd(int a,int b)
8 {
9 return b==? a : gcd(b,a%b);
}
int main()
{
int n;
while(scanf("%d",&n)>)
{
for(int i=;i<n;i++) scanf("%d",&num[i]);
int ans=num[];
for(int i=;i<n;i++)
{
ans=gcd(ans,num[i]);
}
printf("%d\n",ans*n);
}
return ;
25 }
B题
题意:求网格中的‘#’是不是全部恰好属于某一个红十字
sol:直接模拟即可
1 #include <cstdio>
2 #include <algorithm>
3 #include <cstring>
4 using namespace std;
5 const int MAX = ;
6 char map[MAX][MAX];
7 int vis[MAX][MAX];
8 int main()
9 {
int n;
while(scanf("%d",&n)>)
{
memset(vis,,sizeof(vis));
for(int i=;i<n;i++)
{
getchar();
for(int j=;j<n;j++)
scanf("%c",&map[i][j]);
}
for(int i=;i<n-;i++)
{
for(int j=;j<n-;j++)
{
if(map[i][j]=='#'&&!vis[i][j])
if(map[i-][j]=='#'&&!vis[i-][j])
if(map[i+][j]=='#'&&!vis[i+][j])
if(map[i][j-]=='#'&&!vis[i][j-])
if(map[i][j+]=='#'&&!vis[i][j+])
{
vis[i][j]=; vis[i-][j]=; vis[i+][j]=
vis[i][j+]=; vis[i][j-]=
}
}
}
int flag=;
for(int i=;i<n;i++)
{
for(int j=;j<n;j++)
if(!vis[i][j]&&map[i][j]=='#')
flag=;
}
if(flag) printf("YES\n");
else printf("NO\n");
}
return ;
46 }
C题:
给出一堆箱子,和每个箱子的power值(即每个箱子的上方最多能放的箱子) 经过叠放之后看最后最少剩下多少堆。
sol :很简单的贪心题目,wa了3次(怕死贪心了>_<) 很容易想到如果先从上向下叠放的话叠放一次重量加1只要找到能足以承担
该重量的即可,因此从小到大排个序然后顺着取就可以了。
1 #include <cstdio>
2 #include <algorithm>
3 #include <cstring>
4 using namespace std;
5 const int MAX = +;
6 const int inf = 0x3f3f3f3f;
7 int num[MAX],use[MAX];
8 int main()
9 {
int n,ans,ret;
while(scanf("%d",&n)>)
{
ans=; int tot=;
for(int i=;i<n;i++) scanf("%d",&num[i]);
sort(num,num+n);
memset(use,,sizeof(use));
while(tot!=n)
{
int i;
for(i=;i<n;i++) if(!use[i])
{
use[i]=;
ans++;
tot++;
break;
}
ret=;
for(int j=i+;j<n;j++)
{
if(!use[j]&&num[j]>=ret&&num[j]>)
{
tot++;
use[j]=; ret++;
}
}
}
printf("%d\n",ans);
}
return ;
40 }
D:
给出点1与点2之间最短路径的总数构建一个图的邻接矩阵。
sol: 开始想把路径都构成长为2的,再一看k真么大果断超时。之后想到了二分,之后就没然后了.
这题主要是利用二分和二进制思想(其实都差不多)主要看怎么构图。具体见代码(参考别人的呵呵)。
1 #include<cstdio>
2 #include<cstdlib>
3 #include<cstring>
4 #include<algorithm>
5 #include<cmath>
6 using namespace std;
7 #define INF 100000000
8 int k, dp[][], node;
9 int main()
{
memset(dp,,sizeof(dp));
scanf("%d", &k);
dp[][]=dp[][]=dp[][]=;
dp[][]=dp[][]=f[][]=;
for (int i=; i<=; i++)
{
if (i%!=) dp[i][i+]=dp[i][i+]=;
else dp[i][i+]=dp[i][i+]=;
}
for (int i=; i<=; i++)
f[i][i+]=;
for (int i=; i>=; i--)
if (k&(<<i)) node=(i+)*,dp[node][+i]=;
for (int i=; i<=; i++)
for (int j=; j<=; j++) if (dp[i][j]) dp[j][i]=;
printf("%d\n",);
for (int i=;i<=;i++)
{
for (int j=;j<=;j++)
if (dp[i][j]) printf("Y");
else printf("N");
printf("\n");
}
34 }
E题:
又是一个贪心题目。就是给好几堆排然后第一个人取上层的,第二个人取底层的求两个人都采取最优策略能得到分数的最大值
还以为是个dp题目,但是维数太高果断贪心,但是怎么维护最大值又成了卡人的地方,原来这个题只要对半取就可以了,因为可以这么想
假设某堆牌的中上层有一个数大那么第一个人一定会想尽办法先拿到它,同理如果在中下层那么第二个人又会想办法先拿到它,总之:只要是在中上层的第一个人一定能拿到
所以只要对半分就可以了,只要稍微处理下排数为奇数的即可
34 }
Codeforces Round #228 (Div. 2)的更多相关文章
- Codeforces Round #228 (Div. 2) C. Fox and Box Accumulation(贪心)
题目:http://codeforces.com/contest/389/problem/C 题意:给n个箱子,给n个箱子所能承受的重量,每个箱子的重量为1: 很简单的贪心,比赛的时候没想出来.... ...
- Codeforces Round #228 (Div. 1)
今天学长给我们挂了一套Div.1的题,难受,好难啊. Problem A: 题目大意:给你n个数字,让你叠成n堆,每个数字上面的数的个数不能超过这个数,如 3 上面最多放三个数字 问你,最少能放几堆. ...
- Codeforces Round #228 (Div. 1) C. Fox and Card Game 博弈
C. Fox and Card Game 题目连接: http://codeforces.com/contest/388/problem/C Description Fox Ciel is playi ...
- Codeforces Round #228 (Div. 1) B. Fox and Minimal path 构造
B. Fox and Minimal path 题目连接: http://codeforces.com/contest/388/problem/B Description Fox Ciel wants ...
- Codeforces Round #228 (Div. 1) A. Fox and Box Accumulation 贪心
A. Fox and Box Accumulation 题目连接: http://codeforces.com/contest/388/problem/A Description Fox Ciel h ...
- Codeforces Round #228 (Div. 1) 388B Fox and Minimal path
链接:http://codeforces.com/problemset/problem/388/B [题意] 给出一个整数K,构造出刚好含有K条从1到2的最短路的图. [分析] 由于是要自己构造图,当 ...
- Codeforces Round #228 (Div. 2) B. Fox and Cross
#include <iostream> #include <string> #include <vector> #include <algorithm> ...
- Codeforces Round #228 (Div. 2) A. Fox and Number Game
#include <iostream> #include <algorithm> #include <vector> #include <numeric> ...
- Codeforces Round #228 (Div. 1) B
B. Fox and Minimal path time limit per test 1 second memory limit per test 256 megabytes input stand ...
随机推荐
- poj 2154 Color【polya定理+欧拉函数】
根据polya定理,答案应该是 \[ \frac{1}{n}\sum_{i=1}^{n}n^{gcd(i,n)} \] 但是这个显然不能直接求,因为n是1e9级别的,所以推一波式子: \[ \frac ...
- [USACO09NOV]灯Lights
题目描述 Bessie and the cows were playing games in the barn, but the power was reset and the lights were ...
- C#上机作业及代码Question2
第二题某文件名为"*.txt",其中*可能由若干个英文单词组成.将此文件名改为"*.dat",并且单词之间用下划线连接,例如: helloworld.txt,改 ...
- 全面学习ORACLE Scheduler特性(11)使用Job Classes
六.使用Job Classes Job Classes 相当于创建了一个job组,DBA可以将那些具有相同特性的job,统统放到相同的Job Classes中,然后通过对Job Class应用ORAC ...
- 有符号char转无符号short
; cout<<(int)ch<<endl; //-1 unsigned short d = ch; short dd = ch; cout<<d<<e ...
- 395 Longest Substring with At Least K Repeating Characters 至少有K个重复字符的最长子串
找到给定字符串(由小写字符组成)中的最长子串 T , 要求 T 中的每一字符出现次数都不少于 k .输出 T 的长度.示例 1:输入:s = "aaabb", k = 3输出:3最 ...
- c/c++导出lua绑定
[转载]https://note.youdao.com/share/?id=0f4132271151c4b62f9afb712e8304d9&type=note#/ 1.在纯C环境下,把C函数 ...
- WebApi实现IHttpControllerSelector问题
一.让Web API路由配置也支持命名空间参数/// <summary> /// controller /// 选择器 /// </summary> ...
- 【工具】Webpack
远程仓库建立 码云创建组织项目 git clone ssh 切换到主分支mmall-fe后git remote add origin ssh git pull origin master把master ...
- Smarty的应用
smarty模板的核心是一个类,下载好的模板中有这么几个重要的文件夹 (1)libs核心文件夹(2)int.inc.php这是入口文件(3)plugins:自己写的插件文件夹(4)templates_ ...