张志航
张志航
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
张志航的博客
全部文章
(共2篇)
题解 | 买橘子
//2026/2/3 #include <bits/stdc++.h> using namespace std; #define ll long long #define endl '\n' int main() { cin.tie(0) -> sync_with_stdio...
2026-02-03
0
19
题解 | #小灰灰的火焰星球2#
创建一个max[100005][2]数组,max[i][0]存储温度不超过i的最大学分,max[i][1]存储次大学分(可能与max[i][0]的值相同,也可能为0,即无次大值) //2025/11/21 #include <bits/stdc++.h> using namespac...
C++
动态规划
数组
2025-11-21
1
89