笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #最小邮票数#01背包解法
#include <bits/stdc++.h> using namespace std; int main() { int totalCent,n; cin>>totalCent>>n; int values[n+1]; valu...
2024-03-16
0
175
题解 | #xxx定律#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ int step=0; while(n!=1){ i...
2024-03-16
0
195
题解 | #字符串去特定字符#
#include <iostream> using namespace std; int main() { string s; char c; while(getline(cin,s)&&cin>>c){ for(aut...
2024-03-16
0
205
题解 | #Problem D#
#include <iostream> using namespace std; class node{ public: char data; node*left; node*right; node(char c){ this-&g...
2024-03-16
0
206
题解 | #完数与盈数#
#include <iostream> #include <vector> using namespace std; int main() { vector<int>wan,yin; for(int i =2;i<=60;i++){ ...
2024-03-16
0
175
题解 | #查找#
#include <bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n; int arr[n]; for(int i =0;i<n;i++)cin>>...
2024-03-15
0
165
题解 | #整数和#
#include <iostream> using namespace std; int main() { int nn;cin>>nn; while(nn--){ int n;cin>>n; if(n==0){ ...
2024-03-15
0
239
题解 | #平方因子#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ if(n==0)return 0; bool isFind = 0; ...
2024-03-15
0
233
题解 | #开门人和关门人#
#include <bits/stdc++.h> using namespace std; class person{ public: int inTime; int outTime; string ID; }; int toTime(string s){...
2024-03-15
0
224
题解 | #合并符串#
#include <iostream> using namespace std; int main() { string a,b;cin>>a>>b; int len = a.length(); string res=""...
2024-03-15
0
195
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页