刽子手游戏(UVa489)

Posted pgzhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刽子手游戏(UVa489)相关的知识,希望对你有一定的参考价值。

  题目具体描述见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=430

 

C++11代码如下:

 1 #include<iostream>
 2 #include<string.h>
 3 using namespace std;
 4 char ans[100], test[100];
 5 
 6 int main() {
 7     int rnd;
 8     while ((cin>>rnd>>ans>>test)&&rnd!=-1) {
 9         cout << "Round " << rnd << endl;
10         int chance = 7;
11         int left_ch = strlen(ans);
12         for (int i = 0; i < strlen(test); i++) {
13             bool bad = true;
14             for (int j = 0; j < strlen(ans); j++) {
15                 if (ans[j] == test[i]) {
16                     ans[j] =  ;
17                     left_ch--;
18                     bad=false;
19                 }
20             }
21             if (bad) --chance;
22             if (!(left_ch && chance)) break;
23         }
24         if (!left_ch) cout << "You win."<<endl;
25         else if (!chance) cout << "You lose."<<endl;
26         else cout << "You chickened out."<<endl;        
27     }
28     return 0;
29 }

以上是关于刽子手游戏(UVa489)的主要内容,如果未能解决你的问题,请参考以下文章

算法竞赛入门经典 第四章

UVa 489 -- Hangman Judge

uva 489 Hangman Judge

uva489

有没有办法从我的 Dialog 片段中的 Activity 调用方法?

UVa 489 HangmanJudge --- 水题