摘要:
比赛链接:https://codeforces.com/contest/1490 这次比赛好像全是循环的题,有点意思。 A题: 让你添加数字,使得相邻的两个数字小于等于两倍 #include <bits/stdc++.h> using namespace std; const int N = 50; 阅读全文
摘要:
比赛链接: https://codeforces.com/contest/1041 A题:给你n个数,问你最大的和最小的数之间有多少个未写的数,那就找出写的数字然后再减去就好了 #include <bits/stdc++.h> using namespace std; int main() { in 阅读全文