Description
``Accordian'' Patience |
You are to simulate the playing of games of ``Accordian'' patience, the rules for which are as follows:
Deal cards one by one in a row from left to right, not overlapping. Whenever the card matches its immediate neighbour on the left, or matches the third card to the left, it may be moved onto that card. Cards match if they are of the same suit or same rank. After making a move, look to see if it has made additional moves possible. Only the top card of each pile may be moved at any given time. Gaps between piles should be closed up as soon as they appear by moving all piles on the right of the gap one position to the left. Deal out the whole pack, combining cards towards the left whenever possible. The game is won if the pack is reduced to a single pile.
Situations can arise where more than one play is possible. Where two cards may be moved, you should adopt the strategy of always moving the leftmost card possible. Where a card may be moved either one position to the left or three positions to the left, move it three positions.
Input data to the program specifies the order in which cards are dealt from the pack. The input contains pairs of lines, each line containing 26 cards separated by single space characters. The final line of the input file contains a # as its first character. Cards are represented as a two character code. The first character is the face-value (A=Ace, 2-9, T=10, J=Jack, Q=Queen, K=King) and the second character is the suit (C=Clubs, D=Diamonds, H=Hearts, S=Spades).
One line of output must be produced for each pair of lines (that between them describe a pack of 52 cards) in the input. Each line of output shows the number of cards in each of the piles remaining after playing ``Accordian patience'' with the pack of cards as described by the corresponding pairs of input lines.
QD AD 8H 5S 3H 5H TC 4D JH KS 6H 8S JS AC AS 8D 2H QS TS 3S AH 4H TH TD 3C 6S 8C 7D 4C 4S 7S 9H 7C 5D 2S KD 2D QH JD 6D 9D JC 2C KH 3D QC 6C 9S KC 7H 9C 5C AC 2C 3C 4C 5C 6C 7C 8C 9C TC JC QC KC AD 2D 3D 4D 5D 6D 7D 8D TD 9D JD QD KD AH 2H 3H 4H 5H 6H 7H 8H 9H KH 6S QH TH AS 2S 3S 4S 5S JH 7S 8S 9S TS JS QS KS #
6 piles remaining: 40 8 1 1 1 1 1 pile remaining: 52
这个题目是一道栈模拟的题目,题目还可以,就是写的有点麻烦。
代码:
1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #include <cmath> 6 #include <algorithm> 7 #include <set> 8 #include <map> 9 #include <queue> 10 #include <string> 11 #define inf 0x3fffffff 12 #define esp 1e-10 13 #define N 100005 14 15 using namespace std; 16 17 struct node 18 { 19 int top; 20 char card[53][3]; 21 }s[52]; 22 23 bool Input () 24 { 25 scanf ("%s", s[0].card[0]); 26 if (s[0].card[0][0] == '#') 27 return 0; 28 s[0].top = 1; 29 for (int i = 1; i < 52; ++i) 30 { 31 s[i].top = 1; 32 scanf ("%s", s[i].card[0]); 33 } 34 return 1; 35 } 36 37 void Output () 38 { 39 queue <int> q; 40 for (int i = 0; i < 52; ++i) 41 if (s[i].top != 0) 42 q.push(i); 43 int sum = q.size(); 44 if (sum == 1) 45 printf ("1 pile remaining: %d\n", s[q.front()].top); 46 else 47 { 48 printf ("%d piles remaining:", sum); 49 int k; 50 while (!q.empty()) 51 { 52 k = q.front(); 53 q.pop(); 54 printf (" %d", s[k].top); 55 } 56 printf ("\n"); 57 } 58 } 59 60 void qt () 61 { 62 int p = 0; 63 for (;;) 64 { 65 if (p == 52) 66 break; 67 if (s[p].top != 0) 68 { 69 int one = -1, two = -1; 70 int flag = 0, j = p-1; 71 for (;;) 72 { 73 if (j < 0) 74 break; 75 if (s[j].top != 0) 76 { 77 flag++; 78 if (flag == 3) 79 { 80 one = j; 81 break; 82 } 83 if (flag == 1) 84 two = j; 85 } 86 j--; 87 } 88 if (one != -1) 89 { 90 if (s[p].card[s[p].top-1][0] == s[one].card[s[one].top-1][0] || 91 s[p].card[s[p].top-1][1] == s[one].card[s[one].top-1][1]) 92 { 93 strcpy (s[one].card[s[one].top], s[p].card[s[p].top-1]); 94 s[p].top--; 95 s[one].top++; 96 p = 0; 97 continue; 98 } 99 } 100 if (two != -1) 101 { 102 if (s[p].card[s[p].top-1][0] == s[two].card[s[two].top-1][0] || 103 s[p].card[s[p].top-1][1] == s[two].card[s[two].top-1][1]) 104 { 105 strcpy (s[two].card[s[two].top], s[p].card[s[p].top-1]); 106 s[p].top--; 107 s[two].top++; 108 p = 0; 109 continue; 110 } 111 } 112 } 113 ++p; 114 } 115 } 116 117 int main() 118 { 119 //freopen ("test.txt", "r", stdin); 120 while (Input ()) 121 { 122 qt (); 123 Output (); 124 } 125 return 0; 126 }