Codeforces Round #258 (Div. 2)[ABCD]
Codeforces Round #258 (Div. 2)[ABCD] ACM 题目地址:Codeforces Round #258 (Div. 2) A - Game With Sticks 题意 : Akshat and Malvika两人玩一个游戏,横竖n,m根木棒排成#型,每次取走一个交点,交点相关的横竖两条木棒要去掉,Akshat先手,给出n,m问谁赢
Codeforces Round #258 (Div. 2)[ABCD]
ACM
题目地址:Codeforces Round #258 (Div. 2)
A - Game With Sticks
题意:
Akshat and Malvika两人玩一个游戏,横竖n,m根木棒排成#型,每次取走一个交点,交点相关的横竖两条木棒要去掉,Akshat先手,给出n,m问谁赢。
分析:
水题,很明显不管拿掉哪个点剩下的都是(n-1,m-1),最后状态是(0,x)或(x,0),也就是拿了min(n,m)-1次,判断奇偶即可。
代码:
/* * Author: illuz* File: A.cpp * Create Date: 2014-07-24 23:32:17 * Descripton: */ #include #include using namespace std; const int N = 0; int a, b; int main() { scanf("%d%d", &a, &b); if (min(a, b) % 2) { puts("Akshat"); } else { puts("Malvika"); } return 0; }
B - Sort the Array
题意:
给一个序列,求是否能够通过翻转中间一段数使得整个序列递增,并给翻转区间。
分析:
数为10^5个,所以直接排序,然后找出区间验证即可。
代码:
/* * Author: illuz* File: B.cpp * Create Date: 2014-07-24 23:49:35 * Descripton: */ #include #include #include using namespace std; const int N = 1e5 + 10; int n, beg, end, flag; int a[N], b[N]; bool cont; int main() { scanf("%d", &n); for (int i = 0; i = 0 && a[end] == b[end]) end--; if (beg == n) { printf("yes\n"); printf("1 1\n"); return 0; } flag = true; for (int i = 0; i
C - Predict Outcome of the Game
题意:
三支球队要进行n场足球比赛,已经进行了k场,已知一二两队胜局相差d1,二三两队胜局相差d2,问接下去有没可能出现三队胜局都一样,也就是平局的情况。分析:
我们只知道是相差d1,d2,而不知道是那边比较多,所以有四种情况,判断四种情况就行了:
- 判断已比赛场数的合法性: 判断已经进行的比赛场数s是否已经超过k了,如果没有超过,判断(k-s)是否能被3整除
- 判断剩余场数: 判断剩余场数能否把三队胜局填平,如果可以,看扣掉填平后的剩余场数是否能被3整除。
代码:
/* * Author: illuz* File: C.cpp * Create Date: 2014-07-25 00:34:20 * Descripton: */ #include using namespace std; typedef long long ll; ll t, k, n, d1, d2, md; bool jg(ll a, ll b, ll c) { ll s = a + b + c; if (k > t; while (t--) { cin >> n >> k >> d1 >> d2; md = max(d1, d2); if (jg(0, d1, d1 + d2) || jg(d1 + d2, d2, 0) || jg(d1, 0, d2) || jg(md - d1, md, md - d2)) cout
D - Count Good Substrings
题意:
由a和b构成的字符串,如果压缩后变成回文串就是Good字符串。问一个字符串有几个长度为偶数和奇数的Good字串。分析:
可以发现,不管怎么样,压缩后的字符串是...ababab...
这种格式的,所以首尾字符相同,那就是Good字符串了。
我们还要证明下任意good字串的首尾字符串都是一样的,这不难。
奇偶问题的话,可以发现任意两个奇数位置上的a及中间的字符组成的字符串都是奇数长度的,同理偶数位置和b。奇数位置上的a和偶数位置上的a的字符串是偶数长度的。代码:
/* * Author: illuz* File: D.cpp * Create Date: 2014-07-25 10:49:46 * Descripton: */ #include #include #define f(a) (a*(a-1)/2) using namespace std; string s; long long r[2][2]; int main() { cin >> s; for (int i = 0; s[i]; i++) r[i&1][s[i]-'a']++; cout
总结:Orz帆神AK,E题涉及逆元,回头补上~
上一篇: php学习之流程控制实现代码_php基础
推荐阅读
-
Codeforces Round #258 (Div. 2)[ABCD]
-
Codeforces Round #256 (Div. 2) C. Painting Fence(分治贪心)_html/css_WEB-ITnose
-
Codeforces Round #271 (Div. 2) D. Flowers (递推 预处理)_html/css_WEB-ITnose
-
Codeforces Round #262 (Div. 2)-A,B,C,D_html/css_WEB-ITnose
-
Codeforces Round #261(Div.2) A. Pashmak and Garden_html/css_WEB-ITnose
-
Codeforces Round #275 (Div. 1)C(状压+期望)_html/css_WEB-ITnose
-
Codeforces Round #281 (Div. 2)_html/css_WEB-ITnose
-
Codeforces Round #688 (Div. 2) D. Checkpoints gym 102881 L. The Expected Square A. Sticker Album
-
Codeforces Round #278 (Div. 1) 解题报告_html/css_WEB-ITnose
-
Codeforces Round #226 (Div. 2)A Bear and Raspberry_html/css_WEB-ITnose