摘要:
Dashboard - Educational Codeforces Round 176 (Rated for Div. 2) - Codeforces A 贪心 数学 模拟 B 贪心 构造 C 组合数学 D 暴力 Problem - E - Codeforces ^e8e652 题意: 给定 \( 阅读全文
摘要:
Dashboard - 2025 Hunan Multi-School Training Round 2 - Codeforces D 排序后从中间向两边取。 I,J,B,H参考博客:https://www.cnblogs.com/lyrrr/p/18780739 Problem - K - Cod 阅读全文
摘要:
补题链接 J 题 纯签到题,比较前四个队伍的最强队与后四个队伍的最强队,输出总决赛结果。 点击查看代码 #include<bits/stdc++.h> using namespace std; #define ll long long #define ull unsigned long long l 阅读全文
摘要:
K. Match 位运算逐位考虑! 点击查看代码 #include<bits/stdc++.h> using namespace std; #define ll long long #define ull unsigned long long #define int ll ll read() { l 阅读全文
摘要:
A - Jiro 输入 \(AB, BC, AC\) 的大小关系,输出中位数。 手动模拟一下。 点击查看代码 #include<bits/stdc++.h> using namespace std; #define ll long long #define ull unsigned long lon 阅读全文
摘要:
A. Simple Palindrome 给定整数 \(n\),构造长度为 \(n\) 的只由a e i o u的字符串,使得它的回文子序列最少。 容易发现 aia 不如 aai 优,贪心的将每种字符放在一起,并将总个数尽量均分到每个字符上。 点击查看代码 #include<bits/stdc++. 阅读全文
摘要:
A. Minimize! 输入 \(a,b\), 输出 \(b-a\)。 点击查看代码 #include<bits/stdc++.h> using namespace std; #define ll long long #define ull unsigned long long int read( 阅读全文