T790T
T790T
全部文章
分类
归档
标签
去牛客网
登录
/
注册
T790T的博客
全部文章
(共22篇)
题解 | #查找#
#include <iostream> using namespace std; int main() { int a,b,tmp; int x[100],y[100]; while(cin>>a){ for(int i=0;i<a...
2024-08-06
1
102
题解 | #三角形的边#
#include <bits/stdc++.h> using namespace std; int main() { int a[3]; while (cin >> a[0] >> a[1]>>a[2] &&a[0]!...
2024-08-06
1
104
题解 | #最大公约数#
#include <bits/stdc++.h> using namespace std; int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case ...
2024-08-06
1
104
题解 | #Hello World for U#
#include <bits/stdc++.h> using namespace std; char mm[30][30]; int main() { string s; while(cin>>s){ memset(mm,' ',sizeo...
2024-08-04
1
111
题解 | #统计同成绩学生人数#
#include <bits/stdc++.h> using namespace std; map<int,int> m; int main() { int n; while(cin>>n && n!=0){ f...
2024-08-04
1
99
题解 | #ZOJ#
#include <bits/stdc++.h> using namespace std; map<char,int> m; int main() { string s; while(cin>>s){ for(int i=0;i...
2024-08-03
1
90
题解 | #统计字符#
#include <bits/stdc++.h> using namespace std; int main() { string s,ss; while(getline(cin,s)){ if(s == "#") break; ...
2024-08-03
1
104
题解 | #畅通工程#
#include <bits/stdc++.h> using namespace std; int fa[1005], he[1005]; int find(int n) { if (n == fa[n]) return n; fa[n] = find(fa[n]); ...
2024-08-03
1
85
题解 | #String Matching#
#include <iostream> using namespace std; int main() { string t,p; while(cin>>t>>p){ int count=0; for(int i=...
2024-07-31
1
100
题解 | #Integer Inquiry#
#include <bits/stdc++.h> using namespace std; int res[1001] = {0}; void add(string str) { int len = str.size(); int carry = 0; int...
2024-07-30
1
101
首页
上一页
1
2
3
下一页
末页