摘要: #include int m,n;//n个城市 m条道路 struct node{ int a,b,c,p,r; }; int visit[11]={0}; int min=100000; node point[11]; void dfs(int k,int cost) { if(cost>=min) { return; } if(poin... 阅读全文
posted @ 2017-02-07 17:13 jintg 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 #define SIZE 9 5 #define MAXLEN 6 6 int data[SIZE][MAXLEN]; 7 int numberLen[SIZE];//某一行有几位 8 int overlapLen[SIZE+1][SIZE+1];//某两位数的重叠长度 9 in... 阅读全文
posted @ 2017-01-24 16:25 jintg 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 #define SIZE 3 4 int map[100][SIZE]; 5 int jisuan(int a,int b,int c); 6 int num[30][30][30]={0}; 7 int main() 8 { 9 int result; 10 int n; 11 ... 阅读全文
posted @ 2017-01-24 14:58 jintg 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 #define SIZE 6 4 void shred(int step); 5 void shu(int n); 6 void suan(); 7 int num[SIZE]; 8 int nu[6]={0}; 9 int len[SIZE]; 10 int sum=0; 11 i... 阅读全文
posted @ 2017-01-24 14:57 jintg 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 int clock[3][3]; 5 int clo[3][3]; 6 int movel[9][3][3]={1,1,0,1,1,0,0,0,0, 7 1,1,1,0,0,0,0,0,0, 8 0,1,1,0,1,1,0,0... 阅读全文
posted @ 2017-01-24 14:56 jintg 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 #define SIZE 35 4 int map[SIZE][SIZE]={0}; 5 6 7 8 9 int main() 10 { 11 int h; 12 int w; 13 cin >>h; 14 cin >>w; 15 for(int i=0;i... 阅读全文
posted @ 2017-01-24 14:56 jintg 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 5 int weigh[12]={0}; 6 7 char dol[3][12]; 8 int ba[3]; 9 char dollar(int n); 10 int abs(int num); 11 int main() 12 { 13 char c; 14... 阅读全文
posted @ 2017-01-24 14:56 jintg 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 unsigned char data[1000]; 6 7 void build_data() 8 { 9 for(int a=0;a>2); 49 50 dest[i*5+1]=(temp[i*8+1]>4); 53 54 ... 阅读全文
posted @ 2017-01-24 14:52 jintg 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1 #include //#include 2 using namespace std; 3 4 5 6 #define SIZE 11 7 int par(int l,int r,int data[SIZE]); 8 void quick(int l,int r,int data[SIZE]); 9 int main() 10 { 11 int num... 阅读全文
posted @ 2017-01-24 14:50 jintg 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 int num=0; 4 int minnum=100; 5 void flip(int step); 6 void fanzhuan(int x,int y); 7 char map[4][4]; 8 bool same(); 9 bool safe(int x,int y); 10... 阅读全文
posted @ 2017-01-24 14:49 jintg 阅读(213) 评论(0) 推荐(0) 编辑