随笔- 118
文章- 0
评论- 22
阅读-
9469
01 2023 档案
Educational Codeforces Round 3 个人总结A-E
摘要:[Educational Codeforces Round 3](https://codeforces.com/contest/609 "Educational Codeforces Round 3") A. USB Flash Drives + 降序排序后,贪心,甚至不会爆longlong ```
阅读全文
Educational Codeforces Round 2 个人总结A-E
摘要:Educational Codeforces Round 2 A. Extract Numbers 简单的模拟 bool check(string op) { if(op.size()==1&&op[0]=='0') return true; if(op.size()==0||(op[0]<'1'|
阅读全文
Educational Codeforces Round 1 个人总结A-E
摘要:Educational Codeforces Round 1 A. Tricky Sum 数学,求1…n的和减去 小于等于n的二次幂乘2之和 LL f[40]; void solve() { LL n; cin>>n; LL ans=n+n*(n-1)/2; for(int i=0;
阅读全文
标记一下CF教育场的网址
摘要:#(因为太难翻了,做到哪里标到哪,自用 Educational Codeforces Round 1 Educational Codeforces Round 2 Educational Codeforces Round 3
阅读全文
UVA10404
摘要:由题意可知,这题和巴什博弈没什么关系了 相似题目:AtCoder Beginner Contest 278 F - Shiritori 预备知识:DP,博弈论的必胜态和必败态 问题的关键是确定fn是必胜态还是必败态? 而必胜态由必败态转移而来 如果当前i−aj这个位置是必败态,那么i
阅读全文