摘要:
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 map coll; 8 9 int main()10 {11 //freopen("acm.acm","r",stdin);12 ... 阅读全文
摘要:
1 #include 2 #include 3 #define MAXN 1000001 4 using namespace std; 5 6 char c[MAXN]; 7 int next[MAXN]; 8 9 void give_next(int len)10 {11 int i... 阅读全文
摘要:
1 #include 2 #include 3 using namespace std; 4 5 int main() 6 { 7 //freopen("acm.acm","r",stdin); 8 long long n; 9 long long s;10 ... 阅读全文
摘要:
import java.util.*;public class Main { public static void main(String args[]){ double interest; Scanner cin=new Scanner(System.in); intere... 阅读全文
摘要:
#include #include #define MAXN 40005using namespace std;struct node{ int a; int b; int c;};node _m[450];bool mark[MAXN];bool op(node a,node b... 阅读全文
摘要:
#include#include#includeusing namespace std;int compare(const void *i,const void *j);int main(){ //freopen("acm.acm","r",stdin); int num; int... 阅读全文
摘要:
1 #include 2 #include 3 #define MAXN 1005 4 #define inf 10000000 5 using namespace std; 6 int _m[MAXN][MAXN]; 7 int dij[MAXN]; 8 void Dijkstr... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #define MAXN 300 5 using namespace std; 6 7 int tem[MAXN]; 8 9 void big_int_mul(string a,string b,string & an... 阅读全文
摘要:
#include #include #define MAXN 1005using namespace std;struct node{ bool p[21]; int sum; int pre_sum[21]; int num_pro; int team;};node ... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int max(int i,int j) 8 { 9 if(i > j)10 return i;11 return... 阅读全文