码迷,mamicode.com
首页 >  
搜索关键字:timespec    ( 96个结果
Atcoder Grand Contest 039B(思维,BFS)
#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
Codeforces Round #589 (Div. 2)E(组合数,容斥原理,更高复杂度做法为DP)
#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
Codeforces Round #589 (Div. 2)D(思维,构造)
#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
【PAT甲级】1049 Counting Ones (30 分)(类似数位DP思想的模拟)
题意: 输入一个正整数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
【PAT甲级】1050 String Subtraction (20 分)
题意: 输入两个串,长度小于10000,输出第一个串去掉第二个串含有的字符的余串。 trick: ascii码为0的是NULL,减去'0','a','A',均会导致可能减成负数。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using ...
分类:其他好文   时间:2019-10-02 10:56:02    阅读次数:60
【PAT甲级】1048 Find Coins (25 分)(二分)
题意: 输入两个正整数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
【PAT甲级】1047 Student List for Course (25 分)
题意: 输入两个正整数N和K(N<=40000,K<=2500),接下来输入N行,每行包括一个学生的名字和所选课程的门数,接着输入每门所选课程的序号。输出每门课程有多少学生选择并按字典序输出学生的名字。 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/st ...
分类:其他好文   时间:2019-10-01 09:51:47    阅读次数:86
【PAT甲级】1046 Shortest Distance (20 分)
题意: 输入一个正整数N(<=1e5),代表出口的数量,接下来输入N个正整数表示当前出口到下一个出口的距离。接着输入一个正整数M(<=10000),代表询问的次数,每次询问输入两个出口的序号,输出他们之间的最小距离。 代码: #define HAVE_STRUCT_TIMESPEC#include< ...
分类:其他好文   时间:2019-09-29 09:48:34    阅读次数:85
【PAT甲级】1044 Shopping in Mars (25 分)(前缀和,双指针)
题意: 输入一个正整数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
【PAT甲级】1042 Shuffling Machine (20 分)
题意: 输入洗牌次数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
96条   上一页 1 ... 4 5 6 7 8 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!