bing糖雪狸
bing糖雪狸
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bing糖雪狸的博客
全部文章
(共29篇)
题解 | 不点两面(hard version)
#include <iostream> #include <vector> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int m...
2026-03-06
0
15
题解 | 栈和排序
#include <vector> #include <iostream> #include <stack> using namespace std; using ll = long long; int main(){ int n;cin >&g...
2026-03-04
0
15
题解 | 牛牛与后缀表达式
#include <cctype> #include <sstream> #include <vector> #include <string> using namespace std; class Solution { public: /*...
2026-03-03
0
20
题解 | 有效括号序列
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return bool布尔型 */ ...
2026-03-03
0
17
题解 | 吐泡泡
#include <iostream> #include <string> #include <algorithm> #include <vector> using namespace std; int main() { int t; ...
2026-03-02
0
20
题解 | 相邻的糖果
/* * @Author: tkzzzzzz6 * @Date: 2026-02-07 12:16:06 * @LastEditors: tkzzzzzz6 * @LastEditTime: 2026-02-07 12:26:25 */ // 滑动窗口(循环数组实现) + 贪心 #in...
2026-02-07
1
33
题解 | 三角形面积
#include <bits/stdc++.h> using namespace std; struct point { double x, y; point(double A, double B) { x = A, y = B; } p...
2026-02-06
0
35
题解 | 躲藏
/* * @Author: tkzzzzzz6 * @Date: 2026-02-02 21:39:02 * @LastEditors: tkzzzzzz6 * @LastEditTime: 2026-02-02 21:55:31 */ #include<bits/stdc++.h...
2026-02-02
0
40
题解 | 特殊的科学计数法
/* * @Author: tkzzzzzz6 * @Date: 2026-01-31 19:46:23 * @LastEditors: tkzzzzzz6 * @LastEditTime: 2026-01-31 20:03:21 */ #include <bits/stdc++.h...
2026-01-31
0
34
题解 | 小红的gcd
#include<bits/stdc++.h> #define il inline #define endl '\n' using namespace std; #define pb push_back #define fastio \ ios::sync_with_stdio(fal...
2026-01-30
0
47
首页
上一页
1
2
3
下一页
末页