Jgnuh
Jgnuh
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Jgnuh的博客
全部文章
(共12篇)
题解 | 【模板】队列操作
#include<bits/stdc++.h> using namespace std; #define endl "\n" int main(){ ios::sync_with_stdio(false); cin.tie(0), cout.tie(...
2026-03-11
1
5
题解 | 括号配对问题
#include<bits/stdc++.h> using namespace std; #define endl "\n" bool cheak(string s){ stack<char> st; for (int i = 0; i ...
2026-03-11
1
6
题解 | 牛牛的考试
#include<bits/stdc++.h> using namespace std; #define endl "\n" struct n { char s; int num; }; bool cmp(const n& a,const ...
2026-03-06
1
13
题解 | 简写单词
#include<bits/stdc++.h> using namespace std; int main() { string word, ans; while (cin >> word) { ans += toupper(wo...
2026-03-06
1
14
题解 | 无限长正整数排列字符串
#include<bits/stdc++.h> using namespace std; #define endl "\n" int main(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0...
2026-03-06
1
13
题解 | 扫雷
#include<bits/stdc++.h> using namespace std; #define endl "\n" int main(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); in...
2026-03-04
1
13
题解 | 约瑟夫环
#include<bits/stdc++.h> using namespace std; #define endl "\n" int main(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0...
2026-02-05
1
31
题解 | 左侧严格小于计数
#include<bits/stdc++.h> using namespace std; #define endl "\n" const int N=110; int main(){ ios::sync_with_stdio(false); cin....
2026-02-03
1
23
题解 | 神秘石像的镜像序列
#include<bits/stdc++.h> using namespace std; #define endl "\n" int main(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0...
2026-02-03
1
30
题解 | 二维斐波那契数列
#include<bits/stdc++.h> using namespace std; #define endl "\n" const int MOD = 1e9 + 7; const int N = 1010; int num[N][N]; int f(int ...
2026-02-03
1
20
首页
上一页
1
2
下一页
末页