#define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespace std;int col[207],s[207],n;char ss[207][207];int bfs(int x){ int l=0,r=0; for(int i= ...
分类:
其他好文 时间:
2019-10-06 14:54:25
阅读次数:
58
#define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespace std;int f[257],fac[257],ifac[257];const long long mod = 1e9+7;int qpow(int x,int y) ...
分类:
其他好文 时间:
2019-10-05 20:02:55
阅读次数:
95
#define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespace std;vector<int>adj[100007];map<vector<int>,int>mp;int main(){ int n,m; scanf("%d%d" ...
分类:
其他好文 时间:
2019-10-05 10:25:26
阅读次数:
88
题意: 输入一个正整数N(N<=2^30),输出从1到N共有多少个数字包括1。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespace std;int main(){ ios::sync_with_stdio(fa ...
分类:
其他好文 时间:
2019-10-02 11:05:35
阅读次数:
98
题意: 输入两个串,长度小于10000,输出第一个串去掉第二个串含有的字符的余串。 trick: ascii码为0的是NULL,减去'0','a','A',均会导致可能减成负数。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using ...
分类:
其他好文 时间:
2019-10-02 10:56:02
阅读次数:
60
题意: 输入两个正整数N和M(N<=10000,M<=1000),然后输入N个正整数(<=500),输出两个数字和恰好等于M的两个数(小的数字尽可能小且输出在前),如果没有输出"No Solution"。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/s ...
分类:
其他好文 时间:
2019-10-02 10:30:56
阅读次数:
72
题意: 输入两个正整数N和K(N<=40000,K<=2500),接下来输入N行,每行包括一个学生的名字和所选课程的门数,接着输入每门所选课程的序号。输出每门课程有多少学生选择并按字典序输出学生的名字。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/st ...
分类:
其他好文 时间:
2019-10-01 09:51:47
阅读次数:
86
题意: 输入一个正整数N(<=1e5),代表出口的数量,接下来输入N个正整数表示当前出口到下一个出口的距离。接着输入一个正整数M(<=10000),代表询问的次数,每次询问输入两个出口的序号,输出他们之间的最小距离。 代码: #define HAVE_STRUCT_TIMESPEC#include< ...
分类:
其他好文 时间:
2019-09-29 09:48:34
阅读次数:
85
题意: 输入一个正整数N和M(N<=1e5,M<=1e8),接下来输入N个正整数(<=1e3),按照升序输出"i-j",i~j的和等于M或者是最小的大于M的数段。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespa ...
分类:
其他好文 时间:
2019-09-29 09:22:35
阅读次数:
94
题意: 输入洗牌次数K(<=20),输入54张牌每次洗入的位置(不是交换的位置),输出洗好的牌。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using namespace std;multiset<int>st;int a[57]; ...
分类:
系统相关 时间:
2019-09-26 10:06:36
阅读次数:
106