• 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. }

     

  • 相关阅读:
    基于javaweb的医院管理系统(java+springboot+mybatis+vue+mysql)
    红酒煮水果可以吗?
    智慧公厕:科技赋予公共卫生新生命,提升城市管理品质
    Python && JAVA 去除字符串中空格的五种方法
    Git - branch name
    垂直行业大模型“封神”背后,AI数据服务走入“深水区”
    Matlab面向对象的编程-类使用
    Java之并发工具类的详细解析
    【王道操作系统】ch1计算机系统概述-04操作系统结构
    UE4.27.2 源码使用 VS2022 编译时出现的错误的解决方法
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/128147889