POJ 3414 Pots (BFS pouring water), pojbfs

Source: Internet
Author: User

POJ 3414 Pots (BFS pouring water), pojbfs

You have two capacities: a and B. Each time you fill a cup with water, you can pour it out, or pour it into another cup. Ask if you can use these two capacities to produce c-capacity water.

Similar to the last cola problem, this operation is more. The water contained in each of the two cups is used as the status. Each time a queue is sent, the water may arrive in all possible states until there is a cup. the volume of water is c, and the print path is directly recursive.

#include <map>#include <cstdio>#include <cstring>using namespace std;const int N = 105;int a, b, c, t, le, ri, v[N][N];int x[N * N], p[N * N], op[N * N], d[N * N];pair<int, int> q[N * N];void check(int i, int j, int o, int k){    if(v[i][j]) return;    v[i][j] = 1, p[ri] = le;    op[ri] = o, x[ri] = k, d[ri] = d[le] + 1;    q[ri++] = make_pair(i, j);}int bfs(){    int ca, cb = le = ri = 0;    q[ri++] = make_pair(0, 0);    memset(v, 0, sizeof(v)), v[0][0] = 1;    while(le < ri)    {        ca = q[le].first, cb = q[le].second;        if(ca == c || cb == c) return le;        check(a, cb, 1, 1);                 //FILL(1);        check(ca, b, 1, 2);                 //FILL(2);        check(0, cb, 2, 1);                 //DROP(1);        check(ca, 0, 2, 2);                 //DROP(2);        if(ca > b - cb) check(ca - b + cb, b, 3, 1);        else check(0, ca + cb, 3, 1);       //POUR(1,2);        if(cb > a - ca) check(a, cb - a + ca, 3, 2);        else check(ca + cb, 0, 3, 2);       //POUR(2,1);        ++le;    }    return 0;}void print(int k){    if(p[k] > 0) print(p[k]);    if(op[k] == 1) printf("FILL(%d)\n", x[k]);    if(op[k] == 2) printf("DROP(%d)\n", x[k]);    if(op[k] == 3) printf("POUR(%d,%d)\n", x[k], 3 - x[k]);}int main(){    int ans;    while(~scanf("%d%d%d", &a, &b, &c))    {        if(ans = bfs())            printf("%d\n",d[ans]), print(ans);        else puts("impossible");    }    return 0;}

Pots

Description

You are given two pots, having the volumeAAndBLiters respectively. The following operations can be saved med:

Write a program to find the shortest possible sequence of these operations that will yield exactlyCLiters of water in one of the pots.

Input

On the first and only line are the numbersA,B, AndC. These are all integers in the range from 1 to 100 andC≤ Max (A,B).

Output

The first line of the output must contain the length of the sequence of operationsK. The followingKLines must each describe one operation. if there are several sequences of minimal length, output any one of them. if the desired result can't be achieved, the first and only line of the file must contain the word'Impossible'.

Sample Input

3 5 4

Sample Output

6FILL(2)POUR(2,1)DROP(1)POUR(2,1)FILL(2)POUR(2,1)


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.