icepointboy
icepointboy
全部文章
分类
归档
标签
去牛客网
登录
/
注册
icepointboy的博客
全部文章
(共35篇)
题解 | 矩形计数
#include <bits/stdc++.h> using namespace std; using ll=long long; const int mod=1000000007; ll fastpower(ll a,ll b){ ll res=1; a%=mod; ...
2026-01-30
0
8
题解 | 放苹果
#include <bits/stdc++.h> using namespace std; int f(int m,int n,int k){ if(n==1||m==0) return 1; int num=0; for(int i=m;i>=(m...
2026-01-28
0
9
题解 | 【模板】快速幂Ⅰ ‖ 模小整数
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); ...
2026-01-23
0
15
题解 | 茉茉的密码
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<string> vec(n); for (int i = 0; ...
2025-11-15
0
27
题解 | 三角形取数(Hard Version)
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n, k; cin &g...
2025-10-27
0
50
题解 | 斐波那契字符串
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); ...
2025-10-16
0
43
题解 | 卡牌游戏
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin>&g...
2025-09-25
2
38
题解 | 矩形游戏
#include <iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; int sum=n; for(int i=2;i<=s...
2025-09-22
1
52
题解 | 小红的矩阵染色
#include <iostream> #include<algorithm> #include<vector> #include<string> using namespace std; int main() { ios_base::syn...
2025-09-20
0
59
题解 | 排座椅
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n,m,k,l,d; p...
2025-09-20
0
50
首页
上一页
1
2
3
4
下一页
末页