rainman_
rainman_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
rainman_的博客
全部文章
(共127篇)
题解 | #日期类#跟上一题一样
#include <iostream> using namespace std; int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int main() { int m; while...
2023-03-13
0
291
题解 | #日期累加#
#include <iostream> using namespace std; int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool isLeap(int year) { if (y...
2023-03-13
0
262
题解 | #Hello World for U#
#include<iostream> #include<cstdio> using namespace std; //抄的,看了大概的思路 int main() { char str[81]; while (scanf("%s", str) != EOF)...
2023-03-13
0
274
题解 | #Old Bill#
#include <iostream> using namespace std; int main() { int n,x,y,z; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case scanf...
2023-03-13
0
244
题解 | #百鸡问题#
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case int count =...
2023-03-13
0
253
题解 | #整数拆分#
#include <iostream> using namespace std; int dp[1000001]; int main() { int n; dp[0] = 1; for(int i = 1; i < 1000001; i++){ ...
2023-03-13
0
277
题解 | #邮票#穷举法
#include <iostream> #include <map> using namespace std; map<float, int> mymap; //这里为啥不能用double啊,结果和答案不一样 int main() { int coun...
2023-03-12
0
340
题解 | #采药#
#include <iostream> #include <algorithm> using namespace std; //dp[item][time] = value int dp[105][2000]; int herdTime[105]; //采草药的时间 int...
2023-03-12
0
352
题解 | #Coincidence#
#include <iostream> using namespace std; int dp[105][105]; char c1[105]; char c2[105]; int main() { int a, b; while (scanf("%s%s", c1,...
2023-03-11
0
250
题解 | #合唱队形#
#include <iostream> using namespace std; int arr[200]; //初始数组 int dpl[200]; //从左边往右边的dp int dpr[200]; //从右边往左边的dp int main() { int N; ...
2023-03-11
0
372
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页