摘要:
阅读全文
摘要:
2021牛客寒假算法基础集训营6 A 回文括号序列计数 根据题目描述的回文那只能0, 1 int main() { IOS; for (cin >> _; _; --_) { ll n; cin >> n; cout << (n ? 0 : 1) << '\n'; } return 0; } B 系 阅读全文
摘要:
2021牛客寒假算法基础集训营4 A 九峰与签到题 题目有歧义, 白wa4发 int main() { IOS; cin >> m >> n; rep (i, 1, m) { int x; cin >> x >> op; if (op[0] == 'A') ++a[x]; else ++b[x]; 阅读全文
摘要:
阅读全文
摘要:
2020-2021 ACM-ICPC Brazil Subregional Programming Contest A Sticker Album 概率递推, fi 表示得到 i 张贴纸要开包数的期望 则当 a > 0 时, 1~a, fi = 1(开一包至少 a 张贴纸) i > a, 则 \(f 阅读全文
摘要:
Codeforces Round #699 (Div. 2) A Space Navigation int main() { IOS; for (cin >> _; _; --_) { int x, y; cin >> x >> y; string s; cin >> s; for (auto c 阅读全文