AtCoder Beginner Contest 402(A-F详细题解) A 思路:我们直接输出字符串中的大写字母即可。 代码:#include<bits/stdc++.h> using namespace std; #define int long long #define N 500010 signed main(){ string s;cin>>… 秋日薄雾 C语言
F - Prefix LIS Query AtCoder Beginner Contest 393 - AtCoderatcoder.jp/contests/abc393 2025/2/15 A - Poisonous Oyster 枚举四种情况。 #include<bits/stdc++.h> using namespace std; #define int long long #define endl '\n' #define fir first #define sec second signed main(){ ios::sy...
-, 视频播放量 99、弹幕量 0、点赞数 2、投硬币枚数 0、收藏人数 2、转发人数 0, 视频作者 大脑袋火柴人, 作者简介 不想当世界冠军的xcpcer不是一颗好菜菜(^O^),相关视频:针对电赛新玩家:一小时速通基本功能—GPIO、PWM、ADC、IRQ、TIMER、UART、USB、Multicore,随便
AtCoder Beginner Contest 393CreatiQ 立即播放 打开App,流畅又高清100+个相关视频 更多 444 0 01:13:48 App AtCoder Beginner Contest 399 | D E F 讲解 266 0 02:59:41 App 【坐牢2h13min】Teza Round 1 (Codeforces Round 1015, Div. 1 + Div. 2) 1585 0 36:34:15 App [中文字幕]成为...
By the way, it seems AGC disappeared.
}voiddel(intt){while(tot > t) {inty = s[tot--]; siz[f[y]] -= siz[y], f[y] = y; } }intsize(intx){returnsiz[find(x)]; } }; vector<pair<int,int>> g[N];structnode{inta, y, c, z, id; };voidsolve(){intn, m; ...
b = b *10+ x %10; x /=10; }if(a == b)return1;return0; }voidsolve(){intn;cin>> n;vector<int>a;for(inti =1;i * i * i <= n;i++) a.push_back(i * i * i);for(inti = a.size() -1;i >=0;i--){if(is_(a[i])){cout<< a[i] <<endl;return; ...
AtCoder (ABC 409)于周六晚20:00进行,今晚19:00我们在B站进行了AtCoder Beginner Contest 408的题解直播讲解,以下为本次直播讲解内容及文字解析。 ABC409主讲老师:清华大学 吴老师(NOI2021银牌) 欢迎加入ABC交流QQ群咨询、沟通、交流(群密码:AtCoder)
AtCoder (ABC 408)于上周六晚20:00进行,周日晚19:00我们在B站进行了AtCoder Beginner Contest 408的题解直播讲解,以下为本次直播讲解内容及文字解析。 本周六ABC409比赛即将进行,我们将于本周日(6月8日)晚上19:00在B站开始AtCoder Beginner Contest 409的题解直播讲解。
AtCoder Beginner Contest 180 个人题解(快乐DP场) Here A - box 输出\(N - A + B\) B - Various distances 按题意输出 3 种距离即可 #include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ios_base::sync_with_stdio(false), cin.tie(0);...