日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

PAT甲级 -- 1148 Werewolf - Simple Version (20 分)

發布時間:2024/2/28 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PAT甲级 -- 1148 Werewolf - Simple Version (20 分) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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≤k<M?such that?a[i]=b[i]?(i≤k) and?a[k+1]<b[k+1], then?A?is said to be smaller than?B. In case there is no solution, simply print?No Solution.

Sample Input 1:

5 -2 +3 -4 +5 +4

Sample Output 1:

1 4

Sample Input 2:

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

Sample Output 2 (the solution is not unique):

1 5

Sample Input 3:

5 -2 -3 -4 -5 -1

Sample Output 3:

No Solution

20分:

枚舉

#include <iostream> #include <vector> using namespace std;int n;int main() {scanf("%d", &n);vector<int> v(n+1);for (int i = 1; i <= n; i++) scanf("%d", &v[i]);for (int i = 1; i <= n; i++){for (int j = i+1; j <= n; j++){vector<int> lie, a(n+1,1); //好人是1a[i] = a[j] = -1; //假設i,j是狼人(-1)for (int k = 1; k <= n; k++){if(v[k] * a[abs(v[k])] < 0) lie.push_back(k); //k說的與事實不符合,是lie}if (lie.size() == 2 && a[lie[0]] + a[lie[1]] == 0) //只有兩個撒謊的人,一個好人一個狼人{printf("%d %d", i, j);return 0;}}}printf("No Solution\n");return 0; }

?

總結

以上是生活随笔為你收集整理的PAT甲级 -- 1148 Werewolf - Simple Version (20 分)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。