zoukankan      html  css  js  c++  java
  • hihocoder 1154 Spring Outing

    传送门

    #1154 : Spring Outing

    时间限制:20000ms

    单点时限:1000ms

    内存限制:256MB

    描述

    You class are planning for a spring outing. $N$ people are voting for a destination out of $K$ candidate places.

    The voting progress is below:

    First the class vote for the first candidate place. If more than half of the class agreed on the place, the place is selected. The voting ends.

    Otherwise they vote for the second candidate place. If more than half of the class agreed on the place, the place is selected. The voting ends.

    Otherwise they vote for the third candidate place in the same way and go on.

    If no place is selected at last there will be no spring outing and everybody stays at home.

    Before the voting, the Chief Entertainment Officer did a survey, found out every one's preference which can be represented as a permutation of $0, 1, ... K$. ($0$ is for staying at home.) For example, when $K=3$, preference "$1, 0, 2, 3$" means that the first place is his first choice, staying at home is the second choice, the second place is the third choice and the third place is the last choice.

    The Chief Entertainment Officer sends the survey results to the class. So everybody knows the others' preferences. Everybody wants his more prefered place to be selected. And they are very smart, they always choose the optimal strategy in the voting progress to achieve his goal.

    Can you predict which place will be selected?

    输入

    The first line contains two integers, $N$ and $K$, the number of people in your class and the number of candidate places.

    The next $N$ lines each contain a permutation of $0$ ~$ K$, representing someone's preference.

    For 40% of the data, $1 le N, K le 10$

    For 100% of the data, $1 le N, K le 1000$

    输出

    Output the selected place. Or "otaku" without quotes if no place is selected.

    样例提示

    In the sample case, if the second peoson vote against the first place, no place would be selected finally because the first person must vote against the second place for his own interest. Considering staying at home is a worse choice than the first place, the second person's optimal strategy is voting for the first place. So the first place will be selected.

    样例输入
    2 2 1 0 2 2 1 0
    样例输出
    1

    Analysis:

    这道题出自微软2016校园招聘在线笔试第二场这题有点博弈论味道(有“纳什均衡的既视感”--某君语),不过解法是很自然的,不懂博弈论也不难想到。

    
    

    我最初也没想出正解,赛后讨论区有人询问思路,答曰“倒推”。我想了一周左右,中间还和同学讨论了一次,才明白如何倒推。

    
    

    假设投票进行到了最后一轮(表决第 $K$ 个也是最后一个地点)。此轮投票前,众人都知道(每个人都足够聪明)结果只有两种:去第 $K$ 个地点或者呆在家。此时,显然地,每个人都将投自己更想去的地方。将要进行第 $K$ 轮投票时,大家已经知道最后结果了。因此第K轮投票是没必要的。

    
    

    假设第 $K$ 轮投票结果是 $R(K)$,$R(K)=0$ 或 $K$,那么第 $K-1$ 轮投票的结果是 $K-1$ 或 $R(K)$,或者说第 $K-1$ 轮投票实际上是众人在第 $K-1$ 和 $R(K)$ 之间选择,因而结果 $R(K-1)$ 也是预先知道的,第 $K-1$ 轮投票也没必要。

    按此思路可推知 $R(1)$,这就是答案。

    
    

    我们看到在本题中,无需投票众人就知道最后结果了,当然这是由于投票前 preference list 已成为 common knowledge,在实际中这往往是不可能的。

  • 相关阅读:
    coco2dx--Permission denied
    在Winform中屏蔽UnityWebPlayer的右键以及自带Logo解决方案整理
    Setup Factory 程序打包
    T—SQL用法剪辑,方便以后查看
    如何用asp.net MVC框架、highChart库从sql server数据库获取数据动态生成柱状图
    微软ASP.NET MVC 学习地址
    一个用WPF做的简单计算器源代码
    wpMVVM模式绑定集合的应用
    windows phone上下文菜单ContextMenu的使用示例
    CListCtrl 防止闪烁,调整行显示长度
  • 原文地址:https://www.cnblogs.com/Patt/p/4678756.html
Copyright © 2011-2022 走看看