BNUOJ 26192------------King's Poker

来源:互联网 发布:淘宝情趣用品店知乎 编辑:程序博客网 时间:2024/05/16 05:24

Poker is one of the most widely played card games, and King's Poker is one of its variations. The game is played with a normal deck of 52 cards. Each card has one of 4 suits and one of 13 ranks. However, in King's Poker card suits are not relevant, while ranks are Ace (rank 1), 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack (rank 11), Queen (rank 12) and King (rank 13). The name of the game comes from the fact that in King's Poker, the King is the highest ranked card. But this is not the only difference between regular Poker and King's Poker. Players of King's Poker are dealt a hand of just three cards. There are three types of hands:

 

  • set, made of three cards of the same rank.
  • pair, which contains two cards of the same rank, with the other card unmatched.
  • no-pair, where no two cards have the same rank.

Hands are ranked using the following rules:

 

  • Any set defeats any pair and any no-pair.
  • Any pair defeats any no-pair.
  • A set formed with higher ranked cards defeats any set formed with lower ranked cards.
  • If the matched cards of two pairs have different ranks, then the pair with the higher ranked matched cards defeats the pair with the lower ranked matched cards.
  • If the matched cards of two pairs have the same rank, then the unmatched card of both hands are compared; the pair with the higher ranked unmatched card defeats the pair with the lower ranked unmatched card, unless both unmatched cards have the same rank, in which case there is a tie.

A new software house wants to offer King's Poker games in its on-line playing site, and needs a piece of software that, given a hand of King's Poker, determines the set or pair with the lowest rank that beats the given hand. Can you code it?

 

Input

Each test case is described using a single line. The line contains three integers AB, and C representing the ranks of the cards dealt in a hand (1$ \le$ABC$ \le$13).

The last test case is followed by a line containing three zeros.

 

Output

For each test case output a single line. If there exists a set or a pair that beats the given hand, write the lowest ranked such a hand. The beating hand must be written by specifying the ranks of their cards, in non-decreasing order. If no set or pair beats the given hand, write the character `*' (asterisk).

 

Sample Input

1 1 11 1 121 1 131 13 110 13 101 2 213 13 1313 12 1312 12 123 1 41 5 90 0 0

Sample Output

2 2 21 1 131 2 21 2 21 11 112 2 3*1 1 113 13 131 1 21 1 2


清楚地判断好分类情况,然后一点点 if else 就行了~~

不知道有没有更好的方法,没思路~



代码:


#include <iostream>using namespace std;int main(){int a,b,c;while(cin>>a>>b>>c&&(a+b+c!=0)){if(a==13&&b==13&&c==13)cout<<'*'<<endl;else if(a==b&&b==c)cout<<a+1<<" "<<b+1<<" "<<c+1<<endl;else if(a==b){if(c==13)cout<<1<<" "<<a+1<<" "<<b+1<<endl;else if(c>a-1)cout<<a<<" "<<b<<" "<<c+1<<endl;else if(c<a-1)cout<<c+1<<" "<<a<<" "<<b<<endl;else if(a==13&&c==12)cout<<1<<" "<<1<<" "<<1<<endl;elsecout<<a<<" "<<b<<" "<<c+2<<endl;}else if(c==b){if(a==13)cout<<1<<" "<<c+1<<" "<<b+1<<endl;else if(a>b-1)cout<<c<<" "<<b<<" "<<a+1<<endl;else if(a<b-1)cout<<a+1<<" "<<b<<" "<<c<<endl;else if(c==13&&a==12)cout<<1<<" "<<1<<" "<<1<<endl;elsecout<<c<<" "<<b<<" "<<a+2<<endl;}else if(a==c){if(b==13)cout<<1<<" "<<a+1<<" "<<c+1<<endl;else if(b>a-1)cout<<a<<" "<<c<<" "<<b+1<<endl;else if(b<a-1)cout<<b+1<<" "<<c<<" "<<a<<endl;else if(c==13&&b==12)cout<<1<<" "<<1<<" "<<1<<endl;elsecout<<a<<" "<<c<<" "<<b+2<<endl;}else if(a!=b&&b!=c&&c!=a)cout<<1<<" "<<1<<" "<<2<<endl;}return 0;}




原创粉丝点击