1022 D进制的A+B (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805299301433344 解题思路:本题说了a和b值均小于等于2的30次方减一,(2^30-1==1 073 741 823),而整 ...
分类:
其他好文 时间:
2020-02-01 00:55:50
阅读次数:
71
1029 旧键盘 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805292322111488 #include <iostream> #include <cctype> using namespace std ...
分类:
其他好文 时间:
2020-01-31 23:04:56
阅读次数:
73
https://zoj.pintia.cn/problem-sets/91827364500/problems/91827369470 题意: n天n个计划,一天完成一个计划,第i个计划不能在第i天和第i+1天完成,第n个计划不能在第n天和第1天完成,求安排计划的方案数。 有禁区的排列问题 在n*n ...
分类:
其他好文 时间:
2020-01-31 10:40:08
阅读次数:
83
1027 打印沙漏 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805294251491328 #include <iostream> #include <cstdio> #include <cstring> ...
分类:
其他好文 时间:
2020-01-30 22:52:52
阅读次数:
135
1024 科学计数法 (20分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805297229447168 科学计数法是科学家用来表示很大或很小的数字的一种方便的方法,其满足正则表达式 [+ ][1 9] [ ...
分类:
其他好文 时间:
2020-01-30 21:18:14
阅读次数:
69
Given two sets of integers, the similarity of the sets is defined to be /, where N?c?? is the number of distinct common numbers shared by the two sets ...
分类:
其他好文 时间:
2020-01-29 21:54:49
阅读次数:
84
题目链接 https://pintia.cn/problem-sets/1218774283169423360/problems/1218774532776648715 方法一, 见代码 #include <cstdio> #include <iostream> #include <algorith ...
分类:
其他好文 时间:
2020-01-28 23:33:42
阅读次数:
175
1030 完美数列 (25分) https://pintia.cn/problem-sets/994805260223102976/problems/994805291311284224 #include <iostream> #include <vector> #include <algorith ...
分类:
其他好文 时间:
2020-01-28 23:13:29
阅读次数:
90
原题链接 https://pintia.cn/problem sets/994805342720868352/problems/994805498207911936 思路 这题需要用到队列,而且不止一条。首先是每个等待窗口各需要一条,另外在黄线外的等待顾客需要一条。C++提供了现成了现成的队列类型, ...
分类:
其他好文 时间:
2020-01-27 22:23:04
阅读次数:
95
原题链接 https://pintia.cn/problem sets/994805342720868352/problems/994805500414115840 思路 题目大意是说一些城市之间有路相通,假设其中一个城市被敌方占领了,计算需要新修多少条路才能让剩下的城市全部联通。首先这是一个典型的 ...
分类:
其他好文 时间:
2020-01-27 22:03:49
阅读次数:
72