码迷,mamicode.com
首页 >  
搜索关键字:cot    ( 282个结果
hdu 4908 BestCoder Sequence
# include # include using namespace std;int main(){ int n,m,i,sum,cot,flag,j; int map[80040]; int a[40010]; int ans1; int ans2; while(~scanf("%d%d",&n...
分类:其他好文   时间:2014-08-09 11:12:47    阅读次数:245
hdu4185 Oil Skimming(二分匹配)
# include # include # include using namespace std; int n,cot; int map[660],vis[660],pp[660][660],u[660][660]; int bfs(int x) { for(int i=1;i<=cot;i++) { if(!vis[i]&&pp[x][i]) { vis[i]=1; ...
分类:其他好文   时间:2014-08-07 15:54:20    阅读次数:246
hdu 4726 Kia's Calculation (贪心)
# include # include # include using namespace std; char a[1000010],b[1000010]; int a1[1000010],b1[1000010],cot[1000010]; int vis1[1000010],vis2[1000010]; int main() { int t,i,len,ans,flag,j,k; ...
分类:其他好文   时间:2014-08-06 10:32:11    阅读次数:197
hdu 4908 BestCoder Sequence
# include # include using namespace std; int main() { int n,m,i,sum,cot,flag,j; int map[80040]; int a[40010]; int ans1; int ans2; while(~scanf("%d%d",&n,&m)) { ans1=ans2=40010; memset(map...
分类:其他好文   时间:2014-08-04 14:33:47    阅读次数:180
hdu 4884 TIANKENG’s rice shop(模拟)
# include # include # include # include using namespace std; int max(int a,int b) { return a>b?a:b; } int main() { int T,n,t,k,m,i,hh,min,id,num,x; int last[1010];//最后一次开始炒饭的时间 int cot[1010];/...
分类:其他好文   时间:2014-07-30 14:45:53    阅读次数:164
hdu 4891 The Great Pan (模拟)
为什么要开__int64 巨巨在哪~# include # include # include using namespace std; int main () { __int64 n,i,len,cot,cot1,count,flag,j; char a[1001][1030]; while(~scanf("%d",&n)) { getcha...
分类:其他好文   时间:2014-07-29 21:58:42    阅读次数:276
poj 2709 Painter (贪心)
//需要n中普通原料和g ml灰色原料 //每三种不同普通原来各x ml 可以合成 x ml 灰色原料 //问最少需要集组原料 每组各原料50 ml # include # include # include using namespace std; int main() { int i,n,cot,g,a[15],g1,b[15]; while(~scanf("%d",&n),n)...
分类:其他好文   时间:2014-07-27 11:10:12    阅读次数:335
spoj cot: Count on a tree 主席树
10628. Count on a treeProblem code: COTYou are given a tree with N nodes.The tree nodes are numbered from 1 to N.Each node has an integer weight.We wi...
分类:其他好文   时间:2014-07-27 10:31:42    阅读次数:304
poj 2034 Anti-prime Sequences(dfs)
//相邻的 2.3......d 之和都要不为素数 # include # include using namespace std; int num[1010],vis[1010]; int n,m,d,cot; int flag[10010]; void init()//素数打表 { int i,j; for(i=2;i<10010;i++) { if(!flag[i]) f...
分类:其他好文   时间:2014-07-24 11:32:42    阅读次数:234
hdu 1258 Sum It Up(dfs)
# include # include using namespace std; int flag,t,n,a[10010],cot[10010],vis[100010]; void dfs(int x,int sum,int count) { int i; if(sum>t) return ; else if(sum==t) { for(i=0;i<count;i++)...
分类:其他好文   时间:2014-07-23 21:04:53    阅读次数:211
282条   上一页 1 ... 26 27 28 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!