T790T
T790T
全部文章
分类
归档
标签
去牛客网
登录
/
注册
T790T的博客
全部文章
(共22篇)
题解 | #Simple Sorting#
#include <bits/stdc++.h> using namespace std; //map默认从小到大按key值排序,若要从大到小添上greater<int> map<int, int> m; int main() { int n; w...
2024-09-16
1
70
题解 | #采药#
#include <bits/stdc++.h> using namespace std; int dp[105][1005]; // 前i种草药在j时间里采摘 int main() { int T,M; while(cin>>T>>M){ ...
2024-08-14
1
111
题解 | #Primary Arithmetic#
#include <iostream> using namespace std; int main() { string x,y; while(cin>>x>>y && x!="0" && y!...
2024-08-14
1
108
题解 | #数制转换#
#include <iostream> using namespace std; // 先将原进制转到10进制,再转到目标进制 int main() { int from,to; string s; while(cin>>from){ c...
2024-08-13
1
107
题解 | #Mileage Bank#
#include <iostream> #include <math.h> using namespace std; int main() { string from,to,lev; double dis; double sum=0; whi...
2024-08-13
1
102
题解 | #Skew数#
#include <bits/stdc++.h> using namespace std; int f(char c, int n) { int tmp = c-'0'; return tmp*(pow(2,n)-1); } int main() { stri...
2024-08-13
1
89
题解 | #与7无关的数#
#include <bits/stdc++.h> using namespace std; vector<int> v; int main() { int n; while (cin >> n) { for (int i = 1...
2024-08-12
1
99
题解 | #最简真分数#
#include <bits/stdc++.h> using namespace std; int a[605]; int main() { int n; while(cin>>n && n!=0){ for(int i=...
2024-08-11
1
95
题解 | #谁是你的潜在朋友#
#include <bits/stdc++.h> using namespace std; map<int, int> M; int main() { int n,m; while(cin>>n>>m){ // fo...
2024-08-09
1
94
题解 | #奇偶校验#
#include <bits/stdc++.h> using namespace std; int main() { string s; while(cin>>s){ int a[8]={0}; for(int i=0;i...
2024-08-07
1
115
首页
上一页
1
2
3
下一页
末页