A method implemented by a network device residing in a service domain, wherein the network device comprises an information centric networking (ICN) tr...
分类:
Web程序 时间:
2014-07-25 02:58:55
阅读次数:
596
ZCC Loves Codefires
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 198 Accepted Submission(s): 105
Problem Description
Though Z...
分类:
其他好文 时间:
2014-07-24 23:07:13
阅读次数:
177
链接:http://acm.hdu.edu.cn/showproblem.php?pid=4869
题意:有m张扑克,开始时全部正面朝下,你可以翻n次牌,每次可以翻xi张,翻拍规则就是正面朝下变背面朝下,反之亦然,问经过n次翻牌后牌的朝向有多少种情况。
这道题在比赛时我们只开了个头,却无从下手。我看了网上的解题报告,说的都比较简单,对于我这名菜鸟来说也想了比较长的时间才想明白,所以我想写的清楚...
分类:
其他好文 时间:
2014-07-24 23:01:43
阅读次数:
242
代码:#include #include //#include usingnamespacestd;intf[201];intmain(){//ifstreamcin("1050_input.txt");//调试用 intt,n,i,j,s,e;cin>>t;while(t--){memset(f,...
分类:
其他好文 时间:
2014-07-24 22:12:42
阅读次数:
185
代码:#includeusing namespace std;int main(){ int n,s,t1[100],t2[100],i,t,j; while(cin>>n) { if(n==0) break; s=1; for(i=0;i>t1[i]>>t2[i];for(i=0;it2[j]) ...
分类:
其他好文 时间:
2014-07-24 17:17:05
阅读次数:
191
隐马尔可夫模型介绍见这里:点击打开链接
Peter's Hobby
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 362 Accepted Submission(s): 160
Problem De...
分类:
其他好文 时间:
2014-07-24 10:36:44
阅读次数:
300
链接:http://acm.hdu.edu.cn/showproblem.php?pid=4821
题意:给一个字符串,选m个长度为l的子串组成新的串,要求这m个子串互不相同,问有多少种组合。
字符串hash题目,以前没做过,做这道之前还用bkdrhash做了两道简单的题目,POJ1200和HDU1800。
用base数组记录乘了几个seed,base[i]表示seed^i,这个数组...
分类:
其他好文 时间:
2014-07-24 10:36:14
阅读次数:
244
#includeint i,j,s1,s2;int cha(int a,int b){s1=0;s2=0; for(i=1;i<a;i++) { if(a%i==0) s1+=i; } for(i=1;i<b;i++) { if(b%i==0) s2+=i; } if(s1==b&&s2==a) p...
分类:
其他好文 时间:
2014-07-24 05:00:58
阅读次数:
201
数学题。f(n) = 2^(n-1) mod (1e9+7)。 1 #include 2 3 #define MAXN 100005 4 5 char buf[MAXN]; 6 __int64 phi = 1e9+6; 7 __int64 mod = 1e9+7; 8 9 __int64 p...
分类:
其他好文 时间:
2014-07-24 05:00:38
阅读次数:
237
优先级队列+BFS。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define MAXN 25 8 9 typedef struct node_st {10 int x, y, t...
分类:
其他好文 时间:
2014-07-24 00:48:07
阅读次数:
243