上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页
摘要: #include <iostream>#include <cstdio>using namespace std;int mod_exp(int a, int b, int c) //快速幂取余a^b%c{ int res, t; res = 1 % c; t = a % c; while (b) { 阅读全文
posted @ 2017-01-20 22:14 王坤1993 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<math.h>int main(){ __int64 cas,b,i,d; double a,m,n,c; scanf("%I64d",&cas); for(i=1;i<=cas;i++) { scanf("%lf",&n); a=n*log10( 阅读全文
posted @ 2017-01-20 22:12 王坤1993 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #define MAXN 120005 int main() { int num[7]; int T = 0; while (scanf("%d %d %d %d %d %d", &num[1], &num[2], &nu 阅读全文
posted @ 2017-01-20 22:11 王坤1993 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; int const N = 4; int map[N] = {2,3,5,7}; int findMin(int arr[], bool flag[], int len) { int m 阅读全文
posted @ 2017-01-20 22:08 王坤1993 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <cstring> using namespace std; int dir[4][2]={{0,-1},{0,1},{-1,0},{1,0}}; int mat[20][20],tar[20][20],t 阅读全文
posted @ 2017-01-20 00:22 王坤1993 阅读(267) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> void main(){ double length; double l[300]; l[1] = 1.0/2; int i; for (i = 2;; ++i) { l[i] = l[i-1] + 1.0/(i+1); if (l[i] >= 5.20) bre 阅读全文
posted @ 2017-01-19 00:06 王坤1993 阅读(198) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<iomanip> #include<cstdio> #include<cstring> #include<algorithm> #include<cstdlib> #include<cmath> #include<map> #include<s 阅读全文
posted @ 2017-01-18 23:49 王坤1993 阅读(229) 评论(0) 推荐(0) 编辑
摘要: /* 【题意】 给定一棵树,标记一节点,则与该节点所连的边都被标记,问最少需要标记多少个节点使得所有边都被标记; 或者说给定一个树型城堡,在交叉路口放一个士兵,则与该路口相连的路都被守住, 问最少需要派遣多少个士兵来守住这个城堡 dp[father].yes= ( min(dp[child].yes 阅读全文
posted @ 2017-01-18 22:13 王坤1993 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<algorithm> using namespace std; bool cmp(int a,int b) { return a>b; //从大到小排序 } int a[30],m; char s[1005]; int huffman() { 阅读全文
posted @ 2017-01-18 22:11 王坤1993 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include<algorithm>#include<queue>#include<stack>#include<cmath>#include<string.h>#include<stdio.h>#include<stdlib.h>using namespac 阅读全文
posted @ 2017-01-18 22:08 王坤1993 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页