程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #购物单#
#include<bits/stdc++.h> #include <vector> using namespace std; int money,types,important; int p[60]; int s[60]; int f[60];//f[i]==0代表是附属品 ...
2023-01-28
0
241
题解 | #求int型正整数在内存中存储时1的个数#
#include <iostream> using namespace std; int count(string s,int m,int n) { int res=0; for(int i=0;i<s.length();) { int ca...
2023-01-28
0
316
题解 | #字符个数统计#
#include <iostream> #include <vector> using namespace std; int main() { string s; while(getline(cin,s)) { vector<in...
2023-01-28
0
246
题解 | #提取不重复的整数#
#include <iostream> #include <vector> using namespace std; int main() { string s; while(cin>>s) { vector<char...
2023-01-28
0
247
题解 | #合并表记录#
#include <bits/stdc++.h> #include <vector> using namespace std; int main() { int n; int a,b; map<int,int> h; while(c...
2023-01-28
0
228
题解 | #取近似值#
#include <bits/stdc++.h> using namespace std; int main() { string s; while(getline(cin,s)) { //find '.' for(int i=0;...
2023-01-28
0
190
题解 | #质数因子#
#include <bits/stdc++.h> using namespace std; bool isPrime(int x) { if(x==2) return true; for(int i=2;i*i<=x;i++) { if(x%...
2023-01-28
0
256
题解 | #进制转换#
#include <algorithm> #include <bits/stdc++.h> #include <cctype> using namespace std; int char_to_int(char c) { if(isdigit(c)) re...
2023-01-28
0
258
题解 | #第二题#
#include <cctype> #include <iostream> #include <sstream> #include <vector> #include <algorithm> using namespace std; vec...
2023-01-27
0
347
题解 | #N阶楼梯上楼问题#
#include <iostream> #include <vector> using namespace std; int main() { int N; while(cin>>N) { vector<int>...
2023-01-27
0
276
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页