其他分享
首页 > 其他分享> > YTU 2438: 三人三鬼

YTU 2438: 三人三鬼

作者:互联网

不恋尘世浮华,不写红尘纷扰,不叹世道苍凉,不惹情思哀怨,闲看花开,静待花落,冷暖自知,干净如始。

题目描述

 

 

目标是将东岸的33鬼通过一只小船转移到西岸,希望以尽可能少的摆渡次数。

船的容量有限,一次最多只能坐2人(或2鬼或11鬼)。

无论是在河的东岸还是在河的西岸,一旦鬼数多于人数,则人被鬼扔到河中。

怎样渡河的大权掌握在人的手中。

只求一种渡河方案。依次输出东岸的状态。

 

 

输入

无输入

 

输出

依次输出东岸的状态

 

样例输入

NO

 

样例输出

x:(a,b)
....

哈哈,我觉得平时多看几本推理书还是很有用滴 !

其实,原先我就想这还不好过河吗?3次就OK了呀,仔细读题才发现,要求每次船过河船上面都得有人或鬼。

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<string>
#include<map>
#include<algorithm>
#include<iomanip>
#include<queue>
#include<set>
#include<stack>
using namespace std;
int main()
{
    //x次数,a东岸人数,b东岸鬼数
     printf("1:(3,3)\n");
    printf("2:(3,1)\n");
    printf("3:(3,2)\n");
    printf("4:(3,0)\n");
    printf("5:(3,1)\n");
    printf("6:(1,1)\n");
    printf("7:(2,2)\n");
    printf("8:(0,2)\n");
    printf("9:(0,3)\n");
    printf("10:(0,1)\n");
    printf("11:(0,2)\n");
    printf("12:(0,0)\n");
    return 0;
}

 

标签:输出,2438,三鬼,鬼数,YTU,样例,东岸,printf,include
来源: https://blog.csdn.net/weixin_44170305/article/details/90272786