linX615
linX615
全部文章
分类
归档
标签
去牛客网
登录
/
注册
linX615的博客
全部文章
(共8篇)
题解 | 小红的大模型推理 Token 调度
#include <cstddef> #include <iostream> #include <sstream> #include <string> #include <vector> using namespace std; typed...
2026-04-29
0
8
题解 | 魔理沙的魔导书收纳
#include <climits> #include <iostream> #include <vector> using namespace std; typedef long long ll; int main() { ll e; cin ...
2026-04-29
0
8
题解 | 红魔馆的走廊清理
#include <algorithm> #include <cmath> #include <iostream> #include <utility> #include <vector> using namespace std; int...
2026-04-29
0
10
题解 | 幻兽防御战
#include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; ve...
2026-04-28
0
8
题解 | 魔法相册的重复记忆
#include <algorithm> #include <iostream> #include <string> #include <unordered_map> #include <vector> using namespace st...
2026-04-28
0
10
题解 | 回合制游戏
#include <iostream> using namespace std; int minRound(int hp, int n, int b) { int ans = 0, div; while (hp > 0) { // 2 * na &...
2026-04-24
0
11
题解 | #星港交通调度#
#include <algorithm> #include <iostream> #include <vector> using namespace std; struct stop{ int r, p, a; }; // 停泊申请 class Sol...
2026-04-17
0
21
题解 | 魔导模块的效能迭代
#include <iostream> #include <vector> using namespace std; class Solution{ public: int minTime(int n, int m, vector<int> a, vec...
2026-04-16
0
25