Cblx
Cblx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Cblx的博客
全部文章
(共12篇)
题解 | 魔导数据包的混合进制编码
#include <bits/stdc++.h> using namespace std; int panduan(const string& s,int left,int right){ while(left>=0 && right<s.s...
2026-04-27
1
15
题解 | 小红的星屑共鸣
#include <bits/stdc++.h> using namespace std; typedef long long ll; struct Point { ll x, y; }; // 计算两点距离的平方 ll dist2(const Point& a, c...
2026-04-26
1
11
题解 | 小红的星尘收集
#include <iostream> #include <vector> using namespace std; int main(){ vector<int> a; int b; while(cin>>b){ ...
2026-04-26
1
18
题解 | 遗迹探险家小红
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct Treasure{ int t,price; bool isHeavy;...
2026-04-25
1
12
题解 | 幻兽防御战
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin>>n; vecto...
2026-04-25
1
11
题解 | 魔法相册的重复记忆
#include <iostream> #include <algorithm> #include <vector> #include <map> #include <set> using namespace std; int main(...
2026-04-24
1
16
题解 | 魔法相册的重复记忆
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n; cin>>n; vecto...
2026-04-24
1
16
题解 | 奶油蛋糕的进阶配方
#include<iostream> #include<algorithm> #include<vector> using namespace std; struct Cake{ int door,sweet,energy; }; int main()...
2026-04-24
1
15
题解 | 合并区间
#include <iostream> #include <vector> #include <algorithm> using namespace std; class Solution { public: /* int = 整数,比如 5 ...
2026-04-24
1
16
题解 | 【模板】01背包
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n,V; cin>>n>>V...
2026-04-24
1
16
首页
上一页
1
2
下一页
末页