摘要:
P8780 [蓝桥杯 2022 省 B] 刷题统计 P8800 [蓝桥杯 2022 国 B] 卡牌 P8778 [蓝桥杯 2022 省 A] 数的拆分 P8808 [蓝桥杯 2022 国 C] 斐波那契数组 P8786 [蓝桥杯 2022 省 B] 李白打酒加强版 P8781 [蓝桥杯 2022 省 阅读全文
摘要:
A. 减肥计划 因为当$k\ge n$时,最大值一定是答案。并且队头的值是不会减少的。所以从对头出队又从队尾入队的一定不是答案。所以最多进行$n$次,用双端队列模拟一下即可。 #include <bits/stdc++.h> using namespace std; int32_t main() { 阅读全文
摘要:
A. Abducting Nathan! 每得2k分会轮回,模2k后,小于k先手,反之后手 #include<bits/stdc++.h> using namespace std; typedef long long ll; int read(){ int x = 0 , ch = getchar( 阅读全文
摘要:
P8752 [蓝桥杯 2021 省 B2] 特殊年份 P8753 [蓝桥杯 2021 省 AB2] 小平方 P8742 [蓝桥杯 2021 省 AB] 砝码称重 P8754 [蓝桥杯 2021 省 AB2] 完全平方数 P8748 [蓝桥杯 2021 省 B] 时间显示 P8749 [蓝桥杯 202 阅读全文
摘要:
AcWing 4800. 下一个 签到 #include <bits/stdc++.h> using namespace std; int32_t main() { int x; cin >> x; auto f = []( int x){ set<int> a; for( int y ; x > 阅读全文
摘要:
A - Many A+B Problems 签到 #include <bits/stdc++.h> using namespace std; #define int long long int32_t main() { int n ; cin >> n; for( int a , b ; n ; n 阅读全文
摘要:
AcWing 4803. 满足的数 n = int(input()) a = list( map( int , input().split(' ') ) ) s = 0 for i in a : s += i res = 0 for x in range( 1 , 5+1 ) : if ( s + 阅读全文
摘要:
A. Polycarp and the Day of Pi 先纯一下圆周率前30位,然后暴力就好了 #include <bits/stdc++.h> using std::cin; using std::cout; using std::string; int read(){...} const s 阅读全文
摘要:
A - Children and Candies (ABC Edit) n = int(input()) print( n * (n+1) // 2 ) B - Unhappy Hacking (ABC Edit) 用栈模拟一下?但是栈的遍历比较麻烦这里用vector实现 #include<bits 阅读全文
摘要:
A - Fighting over Candies 签到 #include <bits/stdc++.h> using namespace std; int read(){...} const int N = 1e6+5; int main(){ int a = read() , b = read( 阅读全文