[kuangbin带你飞]专题一 简单搜索 - M - 非常可乐

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<queue>
 6 using namespace std;
 7 bool cup[105][105][105];
 8 struct dot
 9 {
10     int a;
11     int b;
12     int c;
13     int s;
14 };
15 int x, y, z;
16 bool flag;
17
18 int clam(int a, int b, int c)
19 {
20     int s;
21     switch(c)
22     {
23         case 1:    s = x;    break;
24         case 2:    s = y;  break;
25         case 3:    s = z;     break;
26     }
27     if( a+b < s)    return a;
28     else            return s-b;
29 }
30
31 int main()
32 {
33 //    freopen("in.in","r",stdin);
34 //    freopen("out.txt","w",stdout);
35     while(scanf("%d%d%d",&x,&y,&z),x|y|z)
36     {
37         if( x& 1 )
38         {
39             printf( "NO\n" );
40             continue;
41         }
42         memset(cup,false,sizeof(cup));
43         flag = false;
44         queue<dot>q;
45         dot s, t;
46         s.a = x;
47         s.b = 0;
48         s.c = 0;
49         s.s = 0;
50         q.push(s);
51         while(q.size())
52         {
53             s = q.front();
54             q.pop();
55             cup[s.a][s.b][s.c] = true;
56
57             if((s.a==x/2 && s.b==x/2) || (s.c==x/2 && s.b==x/2) || (s.c==x/2 && s.a==x/2) )
58             {
59                 flag = true;
60                 break;
61             }
62             t.s = s.s + 1;
63
64             t.a = s.a - clam(s.a,s.b,2);
65             t.b = s.b + clam(s.a,s.b,2);
66             t.c = s.c;
67             if(cup[t.a][t.b][t.c]==false)    q.push(t);
68             t.a = s.a + clam(s.b,s.a,1);
69             t.b = s.b - clam(s.b,s.a,1);
70             t.c = s.c;
71             if(cup[t.a][t.b][t.c]==false)    q.push(t);
72             t.a = s.a;
73             t.b = s.b + clam(s.c,s.b,2);
74             t.c = s.c - clam(s.c,s.b,2);
75             if(cup[t.a][t.b][t.c]==false)    q.push(t);
76             t.a = s.a;
77             t.b = s.b - clam(s.b,s.c,3);
78             t.c = s.c + clam(s.b,s.c,3);
79             if(cup[t.a][t.b][t.c]==false)    q.push(t);
80             t.a = s.a - clam(s.a,s.c,3);
81             t.b = s.b;
82             t.c = s.c + clam(s.a,s.c,3);
83             if(cup[t.a][t.b][t.c]==false)    q.push(t);
84             t.a = s.a + clam(s.c,s.a,1);
85             t.b = s.b;
86             t.c = s.c - clam(s.c,s.a,1);
87             if(cup[t.a][t.b][t.c]==false)    q.push(t);
88         }
89         if(flag)
90         {
91             while(q.size())    q.pop();
92             printf("%d\n",s.s);
93         }
94         else    printf("NO\n");
95
96     }
97     return 0;
98 }
时间: 2024-08-26 18:22:13

[kuangbin带你飞]专题一 简单搜索 - M - 非常可乐的相关文章

kuangbin带你飞专题一 简单搜索 题解

目录 [kuangbin带你飞]专题一 简单搜索 [kuangbin带你飞]专题一 简单搜索 总结:用时2天半终于把这个专题刷完了 对于最基础的dfs bfs 路径打印 状态转移也有了一点自己些微的理解 其实2天半可以压缩到1天半的 主要是自己太懒了...慢慢加油刷bin神的专题呀 从大二下学期开始学算法 一开始就知道这个专题 一开始对于这个专题里的所有问题感觉都好难啊..就直接放弃了 看lrj的书 现在看到这个专题还挺唏嘘的吧 突然觉得思维和想法也不是很难 果然是那个时候心不静&还是储量不够吗

[kuangbin带你飞]专题一 简单搜索 - E - Find The Multiple

1 //Memory Time 2 //2236K 32MS 3 4 #include<iostream> 5 using namespace std; 6 7 int mod[524286]; //保存每次mod n的余数 8 //由于198的余数序列是最长的 9 //经过反复二分验证,436905是能存储198余数序列的最少空间 10 //但POJ肯定又越界测试了...524286是AC的最低下限,不然铁定RE 11 12 int main(int i) 13 { 14 int n; 15

[kuangbin带你飞]专题一 简单搜索 棋盘问题

题来:链接https://vjudge.net/problem/OpenJ_Bailian-132 J - 棋盘问题 1.题目: 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C.Input 输入含有多组测试数据. 每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将在一个n*n的矩阵内描述棋盘,以及摆放棋子的数目. n <= 8 , k

[kuangbin带你飞]专题一 简单搜索

一直拖.放了放久.受不了 A - 棋盘问题 Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Submit Status Description 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C. Input 输入含有多组测试数据. 每组数据的第

[kuangbin带你飞]专题一 简单搜索 A - 棋盘问题

在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C. Input 输入含有多组测试数据. 每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将在一个n*n的矩阵内描述棋盘,以及摆放棋子的数目. n <= 8 , k <= n 当为-1 -1时表示输入结束. 随后的n行描述了棋盘的形状:每行有n个字符,其中 # 表示棋盘区域, . 表示空白

Catch That Cow POJ - 3278 [kuangbin带你飞]专题一 简单搜索

Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number line. Farmer John has two m

[kuangbin带你飞]专题一 简单搜索 bfs B - Dungeon Master

B - Dungeon Master You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one unit north, south, east, west, up or down. You c

[kuangbin带你飞]专题一 简单搜索 - L - Oil Deposits

1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<queue> 6 using namespace std; 7 char g[105][105]; 8 int x, y, ans; 9 int dx[3]={1,0,-1}; 10 int dy[3]={1,0,-1}; 11 bool sscanf() 12

Dungeon Master POJ - 2251 [kuangbin带你飞]专题一 简单搜索

You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one unit north, south, east, west, up or down. You cannot move diagonal