日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Pots POJ - 3414

發布時間:2025/4/16 编程问答 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Pots POJ - 3414 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

You are given two pots, having the volume of?A?and?B?liters respectively. The following operations can be performed:

  • FILL(i)??????? fill the pot?i?(1 ≤?i?≤ 2) from the tap;
  • DROP(i)????? empty the pot?i?to the drain;
  • POUR(i,j)??? pour from pot?i?to pot?j; after this operation either the pot?jis full (and there may be some water left in the pot?i), or the pot?i?is empty (and all its contents have been moved to the pot?j).
  • Write a program to find the shortest possible sequence of these operations that will yield exactly?C?liters of water in one of the pots.

    Input

    On the first and only line are the numbers?A,?B, and?C. These are all integers in the range from 1 to 100 and?C≤max(A,B).

    Output

    The first line of the output must contain the length of the sequence of operations?K. The following?K?lines 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

    6 FILL(2) POUR(2,1) DROP(1) POUR(2,1) FILL(2) POUR(2,1) #include<iostream> #include<algorithm> #include<cstring> #include<queue> #include<stack> using namespace std; struct cup{int x,y;int step;int flag;//標記操作cup*pre; //標記路徑 }; queue<cup> q; stack<int> r; int a,b,e; int vis[117][117]={0};//標記當前狀態是否到達過 int ans; void print(){while(!r.empty()){int i=r.top();r.pop();switch(i){case 1:cout<<"FILL(1)"<<endl;break;case 2:cout<<"FILL(2)"<<endl;break;case 3:cout<<"DROP(1)"<<endl;break;case 4:cout<<"DROP(2)"<<endl;break;case 5:cout<<"POUR(1,2)"<<endl;break;case 6:cout<<"POUR(2,1)"<<endl;break;}} } void bfs(int x,int y){cup c;cup t[317];///目前瓶子里剩余的水量c.x=0,c.y=0;c.flag=0;c.pre=NULL;c.step=0;q.push(c);vis[x][y]=1;int count =-1;while(!q.empty()){count++;t[count]=q.front();q.pop();for(int i=1;i<=6;i++){switch(i){case 1:{c.x=a;c.y=t[count].y;c.flag=1;break;}case 2:{c.x=t[count].x;c.y=b;c.flag=2;break;}case 3:{c.x=0;c.y=t[count].y;c.flag=3;break;}case 4:{c.x=t[count].x;c.y=0;c.flag=4;break;}case 5:{if(t[count].x>b-t[count].y){c.x=t[count].x-(b-t[count].y);c.y=b;}else{c.x=0;c.y=t[count].y+t[count].x;}c.flag=5;break;}case 6:{if(t[count].y>a-t[count].x){c.y=t[count].y-(a-t[count].x);c.x=a;}else{c.y=0;c.x=t[count].x+t[count].y;}c.flag=6;break;} } if(vis[c.x][c.y])continue;vis[c.x][c.y]=1;c.step=t[count].step+1;c.pre=&t[count];if(c.x==e||c.y==e){ans=c.step;while(c.pre){r.push(c.flag);c = *c.pre;}return;}q.push(c);}} } int main(){cin>>a>>b>>e;bfs(0,0);if(ans==0)cout<<"impossible"<<endl;else{cout<<ans<<endl;print();}return 0; }

    ?

    轉載于:https://www.cnblogs.com/CuteAbacus/p/9492151.html

    總結

    以上是生活随笔為你收集整理的Pots POJ - 3414的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。