程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #整数奇偶排序#
#include <bits/stdc++.h> using namespace std; int main() { vector<int> v(10,0); while(cin>>v[0]>>v[1]>>v[2]>&...
2023-01-23
0
294
题解 | #最大子矩阵#
#include <climits> #include <iostream> using namespace std; //最大值初始化位最小值 int dp[100][100]; int temp[100][100]; int N; //ij是起始坐标 void func(...
2023-01-23
1
293
题解 | #买房子#
#include <bits/stdc++.h> using namespace std; int main() { double N,k; while(cin>>N>>k) { bool flag=1; /...
2023-01-23
0
379
题解 | #神奇的口袋#
#include <bits/stdc++.h> #include <variant> #include <vector> using namespace std; //组合问题 int res = 0; vector<bool> used(21, 0...
2023-01-22
0
299
题解 | #首字母大写#
#include <bits/stdc++.h> #include <cctype> #include <sstream> using namespace std; int main() { string s,t; while(getline(ci...
2023-01-22
0
263
题解 | #数制转换#
#include <vector> #include <iostream> #include <bits/stdc++.h> using namespace std; char int_tochar(int num) { char res = 0; ...
2023-01-22
0
272
题解 | #位操作练习#
#include <iostream> using namespace std; int main() { unsigned short m, n;//16位 while (cin >> m >> n){ for (int i = ...
2023-01-22
0
290
题解 | #与7无关的数#
#include <iostream> using namespace std; int main() { int n; while(cin>>n) { int sum=(n+1)*(2*n+1)*n/6;//1到n平方和 ...
2023-01-22
0
267
题解 | #放苹果#
#include<bits/stdc++.h> using namespace std; // //方法一:DFS // int push_apple(int m,int n) // { // if(m==0) return 1;//零个苹果,方法一种 // if(n==...
2023-01-22
0
312
题解 | #最简真分数#
#include <algorithm> #include <bits/stdc++.h> #include <vector> using namespace std; //a<b void zuixiaogongbeishu(int a,int b,int...
2023-01-20
0
329
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页