锐克没有电
锐克没有电
全部文章
题解
归档
标签
去牛客网
登录
/
注册
锐克没有电的博客
全部文章
/ 题解
(共5篇)
题解 | #好串#
好串 用栈来模拟。栈中的a遇到串里的b时就匹配上。 #include <bits/stdc++.h> using namespace std; char trans(char a) { &nbs...
C++
栈
2023-04-16
1
354
题解 | #装进肚子#
装进肚子 先假设全部巧克力都在白天吃完,然后在根据晚上的甜蜜值与白天的甜蜜值的差距从大到小排序替换掉 n - k 个白天时吃的巧克力。注意要开long long。 #include <bits/stdc++.h> using namespace s...
C++
贪心
2023-04-16
1
430
题解 | #[NOIP1998]拼数#
[NOIP1998]拼数 D-[NOIP1998]拼数 依题意排序即可 #include <bits/stdc++.h> using namespace std; bool cmp(string a, str...
C++
贪心
2023-04-16
1
420
游戏的买
#include <bits/stdc++.h> void solve() { int n; std::cin >> n;  ...
C++
动态规划
2023-04-13
1
229
不点两面(hard version)
D题直接模拟 #include <bits/stdc++.h> int main() { std::ios::sync_with_stdio(0); std::cin.tie(0),std::cout.tie(0); ...
C++
2023-04-12
1
280