摘要: A Alice and Bob 先把数字进行质因数分解,分解成 n 堆数字,每堆有 k 个,这样就变成了反尼姆博弈问题 反尼姆博弈的先手必胜条件有两个 异或和为 0 , 所有数等于 1 异或和不为 0 ,且有数大于 1 #include<bits/stdc++.h> #define int long 阅读全文
posted @ 2022-07-16 11:03 PHarr 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 220707个人赛(题目来源Codeforces Round #674 (Div. 3) ) 阅读全文
posted @ 2022-07-09 15:31 PHarr 阅读(29) 评论(0) 推荐(1) 编辑
摘要: A 洛姐打题日记 签到 #include<bits/stdc++.h> using namespace std; int32_t main() { string s; cin >> s; if( s == "AC" ) cout << "Accepted\n"; else if( s == "WA" 阅读全文
posted @ 2022-07-09 13:40 PHarr 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 水题一套 阅读全文
posted @ 2022-07-07 09:32 PHarr 阅读(169) 评论(0) 推荐(0) 编辑
摘要: A 中奖 结构体排序就好了,我是用 pair ,存相反数 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') 阅读全文
posted @ 2022-07-05 19:10 PHarr 阅读(50) 评论(0) 推荐(0) 编辑
摘要: A. Division? a题就是简单的if语句就好了 n = int(input()) for i in range(n): x = int(input()) if x <= 1399: print("Division 4") elif x <= 1599: print("Division 3") 阅读全文
posted @ 2022-07-05 19:07 PHarr 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 20220701 SMU&CUIT友谊赛(题目来源2021ccpc女生赛) 阅读全文
posted @ 2022-07-05 16:02 PHarr 阅读(51) 评论(0) 推荐(0) 编辑
摘要: NC18386 字符串 这道题几乎就是双指针的模板题了。 每次移动一下左端点,然后移动右端点知道满足条件 #include<bits/stdc++.h> using namespace std; int v[300] = {}; int32_t main() { string s; cin >> s 阅读全文
posted @ 2022-07-05 15:21 PHarr 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 所有以`.`开头的文件或文件夹都是隐藏的 `.`是当前目录,`..`是父目录 `pwd`显示当前目录路径 绝对路径以`/`开头,绝对以当前目录下的文件开头 `cd`不加参数默认回到用户根目录 ``` (1) ctrl c: 取消命令,并且换行 (2) ctrl u: 清空本行命令 (3) tab键: 阅读全文
posted @ 2022-06-27 23:43 PHarr 阅读(46) 评论(0) 推荐(0) 编辑
摘要: A - A to Z String 2 签到 #include <bits/stdc++.h> using namespace std; int read(){ int x = 0 , ch = getchar(); while( ch < '0' || ch > '9' ) ch = getcha 阅读全文
posted @ 2022-06-27 20:29 PHarr 阅读(112) 评论(0) 推荐(0) 编辑