• 1148 Werewolf - Simple Version


    Werewolf(狼人杀) is a game in which the players are partitioned into two parties: the werewolves and the human beings. Suppose that in a game,

    • player #1 said: "Player #2 is a werewolf.";
    • player #2 said: "Player #3 is a human.";
    • player #3 said: "Player #4 is a werewolf.";
    • player #4 said: "Player #5 is a human."; and
    • player #5 said: "Player #4 is a human.".

    Given that there were 2 werewolves among them, at least one but not all the werewolves were lying, and there were exactly 2 liars. Can you point out the werewolves?

    Now you are asked to solve a harder version of this problem: given that there were N players, with 2 werewolves among them, at least one but not all the werewolves were lying, and there were exactly 2 liars. You are supposed to point out the werewolves.

    Input Specification:

    Each input file contains one test case. For each case, the first line gives a positive integer N (5≤N≤100). Then N lines follow and the i-th line gives the statement of the i-th player (1≤i≤N), which is represented by the index of the player with a positive sign for a human and a negative sign for a werewolf.

    Output Specification:

    If a solution exists, print in a line in ascending order the indices of the two werewolves. The numbers must be separated by exactly one space with no extra spaces at the beginning or the end of the line. If there are more than one solution, you must output the smallest solution sequence -- that is, for two sequences A=a[1],...,a[M] and B=b[1],...,b[M], if there exists 0≤kNo Solution.

    Sample Input 1:

    1. 5
    2. -2
    3. +3
    4. -4
    5. +5
    6. +4

    Sample Output 1:

    1 4
    

    Sample Input 2:

    1. 6
    2. +6
    3. +3
    4. +1
    5. -5
    6. -2
    7. +4

    Sample Output 2 (the solution is not unique):

    1 5
    

    Sample Input 3:

    1. 5
    2. -2
    3. -3
    4. -4
    5. -5
    6. -1

    Sample Output 3:

    No Solution

    两个狼人两个骗子,其中有一个狼人是骗子,四层for循环来枚举:

    两个for循环枚举两个狼人,这样答案输出时可以保证是最小序列,然后分别考虑两个狼人各自撒谎的时候,第三层for循环枚举撒谎的人类,然后更改两个骗子的陈述,取相反数即可,第四层for循环验证这样的假设情况下所有人的陈述是否矛盾,如果不矛盾直接输出两个狼人,return 0;否则继续下一次枚举,如果所有枚举的情况都有矛盾,输出No Solution。

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. int n;
    6. int a[110]; //输入、真正陈述
    7. bool flag;
    8. int main() {
    9. cin >> n;
    10. for (int i = 1; i <= n; i++) {
    11. cin >> a[i];
    12. }
    13. for (int i = 1; i <= n; i++) {
    14. for (int j = i + 1; j <= n; j++) { //枚举狼人
    15. a[i] = -a[i]; //第一个狼人说谎
    16. for (int k = 1; k <= n; k++) { //枚举说谎的人类
    17. flag = 0;
    18. if (k != i && k != j) {
    19. a[k] = -a[k];
    20. for (int c = 1; c <= n; c++) { //验证说法是否矛盾
    21. if (a[c] < 0 && abs(a[c]) != i && abs(a[c]) != j) {
    22. flag = 1;
    23. break;
    24. }
    25. if (a[c] > 0 && (a[c] == i || a[c] == j)) {
    26. flag = 1;
    27. break;
    28. }
    29. }
    30. if (!flag) {
    31. cout << i << ' ' << j;
    32. return 0;
    33. }
    34. a[k] = -a[k];
    35. }
    36. }
    37. a[i] = -a[i];
    38. a[j] = -a[j]; //第二个狼人说谎
    39. for (int k = 1; k <= n; k++) { //枚举说谎的人类
    40. flag = 0;
    41. if (k != i && k != j) {
    42. a[k] = -a[k];
    43. for (int c = 1; c <= n; c++) { //验证说法是否矛盾
    44. if (a[c] < 0 && abs(a[c]) != i && abs(a[c]) != j) {
    45. flag = 1;
    46. break;
    47. }
    48. if (a[c] > 0 && (a[c] == i || a[c] == j)) {
    49. flag = 1;
    50. break;
    51. }
    52. }
    53. if (!flag) {
    54. cout << i << ' ' << j;
    55. return 0;
    56. }
    57. a[k] = -a[k];
    58. }
    59. }
    60. a[j] = -a[j];
    61. }
    62. }
    63. cout << "No Solution";
    64. return 0;
    65. }

     

  • 相关阅读:
    R语言ggplot2可视化:使用patchwork包将2个ggplot2可视化结果横向组合、并自定义修改(更改)组合图像中指定子图的主题(theme)
    image process那个项目的图片上色问题 第二版再说吧 这个是一个可行的方案 cv.histogram 的颜色问题
    Spring Cloud Alibaba —— 分布式事务组件
    RocketMQ之NameServer源码分析
    ARM开发(7)系统移植初步(bootloader的选择和移植)基于cortex-A9的fs4412
    uni app push 发送透传通知 支持安卓和苹果(RestAPI V2风格)
    Linux 系统启动过程
    git 提交代码,解决分支冲突,合并分支
    Linux中vim编译器
    类似邮件收发功能的相关数据库设计或逻辑处理记录
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/128147889