摘要:
Codeforces Round 893 (Div. 2) A - Buttons 思路:将第三种按钮平分给两人,若第一个人的按钮数大于第二个人则First #include<bits/stdc++.h> using namespace std; #define int long long //#d 阅读全文
摘要:
Codeforces Global Round 15 A - Subsequence Permutation 思路:找出原串与排序后的串不同的个数 #include <bits/stdc++.h> using namespace std; void solve(){ int n;cin>>n; st 阅读全文
摘要:
23 暑假友谊赛 No.4 A - Alien Sunset 思路:用差分数组标记每个周期的夜晚,(从0开始) #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int128 #def 阅读全文
摘要:
Codeforces Round 891 (Div. 3) A - Array Coloring 思路:需要两部分的奇偶相同,判断奇数的个数是否为偶数即可 #include<bits/stdc++.h> using namespace std; #define int long long //#de 阅读全文
摘要:
Codeforces Round 889 (Div. 2) A - Dalton the Teacher 思路:找出pi=i的数量,除2为答案 #include<bits/stdc++.h> using namespace std; #define int long long //#define i 阅读全文
摘要:
AtCoder Beginner Contest 313 A - To Be Saikyo 思路:找到最大的,和第一个比较 #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int12 阅读全文
摘要:
23 暑假友谊赛 No.3 A - 把你砍成两半! 思路:确定a1时,当a2~an都为a1的倍数时,条件一定满足 #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int128 typ 阅读全文
摘要:
The 10th Shandong Provincial Collegiate Programming Contest A - Calandar 思路:将日期转换为天数,求出差值对5取模 #include<bits/stdc++.h> using namespace std; #define int 阅读全文
摘要:
(AtCoder Beginner Contest 312) A - Chord #include<bits/stdc++.h> using namespace std; #define int long long //#define int __int128 typedef pair<int,in 阅读全文
摘要:
Educational Codeforces Round 76 (Rated for Div. 2) A - Two Rival Students 思路:最多可加x个距离,且最后的距离不能超过n-1 #include<bits/stdc++.h> using namespace std; #defi 阅读全文