码迷,mamicode.com
首页 > 其他好文 > 详细

zjuoj 3605 Find the Marble

时间:2015-05-02 23:19:33      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3605

 

Find the Marble

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Alice and Bob are playing a game. This game is played with several identical pots and one marble. When the game starts, Alice puts the pots in one line and puts the marble in one of the pots. After that, Bob cannot see the inside of the pots. Then Alice makes a sequence of swappings and Bob guesses which pot the marble is in. In each of the swapping, Alice chooses two different pots and swaps their positions.

Unfortunately, Alice‘s actions are very fast, so Bob can only catch k of m swappings and regard these k swappings as all actions Alice has performed. Now given the initial pot the marble is in, and the sequence of swappings, you are asked to calculate which pot Bob most possibly guesses. You can assume that Bob missed any of the swappings with equal possibility.

Input

There are several test cases in the input file. The first line of the input file contains an integer N (N ≈ 100), then N cases follow.

The first line of each test case contains 4 integers nmk and s(0 < s ≤ n ≤ 50, 0 ≤ k ≤ m ≤ 50), which are the number of pots, the number of swappings Alice makes, the number of swappings Bob catches and index of the initial pot the marble is in. Pots are indexed from 1 to n. Then m lines follow, each of which contains two integers ai and bi (1 ≤ aibi ≤ n), telling the two pots Alice swaps in the i-th swapping.

Outout

For each test case, output the pot that Bob most possibly guesses. If there is a tie, output the smallest one.

Sample Input

3
3 1 1 1
1 2
3 1 0 1
1 2
3 3 2 2
2 3
3 2
1 2

Sample Output

2
1
3

Author: GUAN, Yao
Contest: The 9th Zhejiang Provincial Collegiate Programming Contest

 

 

分析;

Alice和Bob在玩一个游戏,该游戏需要n个杯子和一个石头,开始时石头被罩在在某个杯子里,Alice可交换任意两个杯子,经过一系列的交换,由Bob猜石头在哪个杯子里,交换总共m步,但Bob只看到了其中的k步,问Bob猜哪个杯子的可能性最大。

第一感觉就是和组合(在n个数里取m个有多少种)很相似,再看题目因为顺序是一定的,即选了k步之后,顺序只有一种。

c[n][m]=c[n-1][m-1]+c[n-1][m];

具体编码的时候只考虑到交换的两个杯子而忘记其他杯子在选择时的值也要加上c[n-1][m-1];

 

AC代码:

技术分享
 1 #include<cstdio>
 2 #include<cstring>
 3 #define MAXN 55
 4 using namespace std;
 5 
 6 long long dp[MAXN][MAXN][MAXN];
 7 
 8 int main()
 9 {
10     int T,n,m,s,k,i,j,t,a[MAXN],b[MAXN];
11     scanf("%d",&T);
12     while(T--)
13     {
14         scanf("%d%d%d%d",&n,&m,&k,&s);
15         for(i=1;i<=m;i++)
16             scanf("%d%d",a+i,b+i);
17         memset(dp,0,sizeof(dp));
18         dp[0][0][s]=1;
19         for(i=1;i<=m;i++)
20         {
21             dp[i][0][s]=1;
22             for(j=1;j<=i&&j<=k;j++)
23             {
24                 dp[i][j][b[i]]=dp[i-1][j-1][a[i]];
25                 dp[i][j][a[i]]=dp[i-1][j-1][b[i]];
26                 for(t=1;t<=n;t++)
27                 {
28                     dp[i][j][t]+=dp[i-1][j][t];
29                     if(t!=a[i]&&t!=b[i])//最开始忘记考虑的一种情况
30                         dp[i][j][t]+=dp[i-1][j-1][t];
31                 }
32             }
33         }
34         /*for(i=1;i<=m;i++,putchar(‘\n‘))
35             for(j=0;j<=k;j++,putchar(‘\n‘))
36                 for(t=1;t<=n;t++)
37                     printf("%d ",dp[i][j][t]);
38         printf("\n");*/
39         for(s=1,t=2;t<=n;t++)
40             if(dp[m][k][t]>dp[m][k][s])
41                 s=t;
42         printf("%d\n",s);
43     }
44     return 0;
45 }
View Code

 

zjuoj 3605 Find the Marble

标签:

原文地址:http://www.cnblogs.com/jeff-wgc/p/4472584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!