程昱同学
程昱同学
全部文章
分类
归档
标签
去牛客网
登录
/
注册
程昱同学的博客
全部文章
(共127篇)
题解 | #取中值#
#include <bits/stdc++.h> #include <vector> using namespace std; int main() { int m,n; int a,b,c,d; while(cin>>m>>n...
2023-01-25
0
288
题解 | #日期差值#
#include <bits/stdc++.h> #include <sstream> using namespace std; //计算是公元以来第几天 int caldays(string s) { int days=0; int runnian=0;//...
2023-01-25
0
307
题解 | #最短路径#
#include<iostream> #include<string> using namespace std; //本题坑点:会重复输入边,本题以第一次输入为准,切忌覆盖 //方法:高精度运算和弗洛伊德 //注意:是无向图 //高精度乘法 //999999999999999...
2023-01-25
1
378
题解 | #最小面积子矩阵#
#include <bits/stdc++.h> using namespace std; int m,n,k; int min_s=10001; int mp[100][100]; /*mp: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ...
2023-01-25
0
404
题解 | #整除问题#
#include <map> #include <string> #include <iostream> #include <cctype> #include <stack> #include <vector> using na...
2023-01-25
0
320
题解 | #计算表达式#
#include <bits/stdc++.h> #include <cctype> #include <stack> using namespace std; map<char, int> m; stack<double> shuzi; ...
2023-01-24
0
366
题解 | #路径打印#
#include <vector> #include <iostream> #include <queue> #include <algorithm> #include <sstream> #include <vector> u...
2023-01-24
0
313
题解 | #棋盘游戏#
#include <vector> #include <iostream> #include <queue> #include <algorithm> using namespace std; int x2, y2;//终点 int chess[6][...
2023-01-24
0
306
题解 | #二次方程计算器#
#include <bits/stdc++.h> using namespace std; //分别为二次项,一次项,常数项的系数 double a = 0, b = 0, c = 0; int pos = -1; //等号位置 int main() { string s; ...
2023-01-24
0
361
题解 | #简单密码#
#include <iostream> using namespace std; int main() { string s,e,t; while(getline(cin,s)) { if(s=="ENDOFINPUT") return 0; ...
2023-01-24
0
291
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页