
codeforces
辉忆年
这个作者很懒,什么都没留下…
展开
-
Codeforces Round #648 (Div. 2)(A-F)
文章目录A. Matrix GameB. Trouble SortC. Rotation MatchingD. Solve The MazeE. Maximum Subsequence ValueF. Swaps AgainA. Matrix Game题目链接:https://codeforces.ml/contest/1365/problem/A一个1占一行一列。故可操作的次数为所剩行列的最小值。奇数先手胜#include <iostream>#include <algorit原创 2020-06-09 01:20:37 · 314 阅读 · 0 评论 -
Educational Codeforces Round 89 (Rated for Div. 2)(A-D)
数论kill me,o(╥﹏╥)o文章目录A. Shovels and SwordsB. ShuffleC. Palindromic PathsD. Two DivisorsA. Shovels and Swords题目链接思维,没啥说的。void sol() { ll a, b; cin >> a >> b; cout << min((a + b) / 3, min(a, b) ) << endl;}int main() {原创 2020-06-12 18:21:22 · 272 阅读 · 0 评论