Hex Artifact Content
Not logged in

Artifact 3ecdbbbf9c0cd8ea8daabf9121078ef0f841a953:


0000: 23 69 6e 63 6c 75 64 65 20 3c 69 6f 73 74 72 65  #include <iostre
0010: 61 6d 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 73  am>..#include <s
0020: 73 74 72 65 61 6d 3e 0d 0a 23 69 6e 63 6c 75 64  stream>..#includ
0030: 65 20 3c 69 6f 6d 61 6e 69 70 3e 0d 0a 23 69 6e  e <iomanip>..#in
0040: 63 6c 75 64 65 20 3c 76 65 63 74 6f 72 3e 0d 0a  clude <vector>..
0050: 23 69 6e 63 6c 75 64 65 20 3c 73 74 72 69 6e 67  #include <string
0060: 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 6d 61 70  >..#include <map
0070: 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 73 65 74  >..#include <set
0080: 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 61 6c 67  >..#include <alg
0090: 6f 72 69 74 68 6d 3e 0d 0a 23 69 6e 63 6c 75 64  orithm>..#includ
00a0: 65 20 3c 6e 75 6d 65 72 69 63 3e 0d 0a 23 69 6e  e <numeric>..#in
00b0: 63 6c 75 64 65 20 3c 69 74 65 72 61 74 6f 72 3e  clude <iterator>
00c0: 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 63 6f 6d 70  ..#include <comp
00d0: 6c 65 78 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c  lex>..#include <
00e0: 71 75 65 75 65 3e 0d 0a 23 69 6e 63 6c 75 64 65  queue>..#include
00f0: 20 3c 73 74 61 63 6b 3e 0d 0a 23 69 6e 63 6c 75   <stack>..#inclu
0100: 64 65 20 3c 63 6d 61 74 68 3e 0d 0a 75 73 69 6e  de <cmath>..usin
0110: 67 20 6e 61 6d 65 73 70 61 63 65 20 73 74 64 3b  g namespace std;
0120: 0d 0a 74 79 70 65 64 65 66 20 6c 6f 6e 67 20 6c  ..typedef long l
0130: 6f 6e 67 20 4c 4c 3b 0d 0a 0d 0a 63 6c 61 73 73  ong LL;....class
0140: 20 52 50 53 54 6f 75 72 6e 61 6d 65 6e 74 0d 0a   RPSTournament..
0150: 7b 0d 0a 70 75 62 6c 69 63 3a 0d 0a 09 69 6e 74  {..public:...int
0160: 20 67 72 65 61 74 65 73 74 53 65 65 64 28 69 6e   greatestSeed(in
0170: 74 20 72 6f 75 6e 64 73 2c 20 69 6e 74 20 43 29  t rounds, int C)
0180: 20 0d 0a 09 7b 0d 0a 09 09 69 6e 74 20 4c 3d 31   ...{....int L=1
0190: 2c 20 52 3d 28 31 3c 3c 72 6f 75 6e 64 73 29 2b  , R=(1<<rounds)+
01a0: 31 3b 0d 0a 09 09 77 68 69 6c 65 28 20 52 2d 4c  1;....while( R-L
01b0: 20 3e 20 31 29 20 7b 0d 0a 09 09 09 69 6e 74 20   > 1) {.....int 
01c0: 4d 20 3d 20 28 4c 2b 52 29 2f 32 3b 0d 0a 09 09  M = (L+R)/2;....
01d0: 09 28 63 61 6e 5f 77 69 6e 28 4d 2c 20 72 6f 75  .(can_win(M, rou
01e0: 6e 64 73 2c 20 43 29 20 3f 20 4c 20 3a 20 52 29  nds, C) ? L : R)
01f0: 20 3d 20 4d 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65   = M;....}....re
0200: 74 75 72 6e 20 4c 3b 0d 0a 09 7d 0d 0a 0d 0a 09  turn L;...}.....
0210: 62 6f 6f 6c 20 63 61 6e 5f 77 69 6e 28 69 6e 74  bool can_win(int
0220: 20 58 2c 20 69 6e 74 20 52 2c 20 69 6e 74 20 43   X, int R, int C
0230: 29 0d 0a 09 7b 0d 0a 09 09 71 75 65 75 65 3c 20  )...{....queue< 
0240: 70 61 69 72 3c 69 6e 74 2c 69 6e 74 3e 20 3e 20  pair<int,int> > 
0250: 51 3b 0d 0a 09 09 51 2e 70 75 73 68 28 20 6d 61  Q;....Q.push( ma
0260: 6b 65 5f 70 61 69 72 28 52 2c 20 58 29 20 29 3b  ke_pair(R, X) );
0270: 0d 0a 0d 0a 09 09 73 65 74 3c 69 6e 74 3e 20 75  ......set<int> u
0280: 6e 75 73 65 64 3b 0d 0a 09 09 66 6f 72 28 69 6e  nused;....for(in
0290: 74 20 6e 3d 30 3b 20 6e 3c 3d 28 31 3c 3c 52 29  t n=0; n<=(1<<R)
02a0: 3b 20 2b 2b 6e 29 0d 0a 09 09 09 69 66 28 20 6e  ; ++n).....if( n
02b0: 21 3d 58 20 29 0d 0a 09 09 09 09 75 6e 75 73 65  !=X )......unuse
02c0: 64 2e 69 6e 73 65 72 74 28 6e 29 3b 0d 0a 0d 0a  d.insert(n);....
02d0: 09 09 77 68 69 6c 65 28 20 21 51 2e 65 6d 70 74  ..while( !Q.empt
02e0: 79 28 29 20 29 20 7b 0d 0a 09 09 09 69 6e 74 20  y() ) {.....int 
02f0: 72 3d 51 2e 66 72 6f 6e 74 28 29 2e 66 69 72 73  r=Q.front().firs
0300: 74 3b 0d 0a 09 09 09 69 6e 74 20 78 3d 51 2e 66  t;.....int x=Q.f
0310: 72 6f 6e 74 28 29 2e 73 65 63 6f 6e 64 3b 0d 0a  ront().second;..
0320: 09 09 09 51 2e 70 6f 70 28 29 3b 0d 0a 0d 0a 09  ...Q.pop();.....
0330: 09 09 69 6e 74 20 78 6c 20 3d 20 78 2d 28 69 6e  ..int xl = x-(in
0340: 74 29 73 71 72 74 28 28 64 6f 75 62 6c 65 29 43  t)sqrt((double)C
0350: 2a 78 29 3b 0d 0a 09 09 09 73 65 74 3c 69 6e 74  *x);.....set<int
0360: 3e 3a 3a 69 74 65 72 61 74 6f 72 20 69 74 20 3d  >::iterator it =
0370: 20 75 6e 75 73 65 64 2e 6c 6f 77 65 72 5f 62 6f   unused.lower_bo
0380: 75 6e 64 28 78 6c 29 3b 0d 0a 09 09 09 69 66 28  und(xl);.....if(
0390: 20 69 74 3d 3d 75 6e 75 73 65 64 2e 65 6e 64 28   it==unused.end(
03a0: 29 20 29 0d 0a 09 09 09 09 72 65 74 75 72 6e 20  ) )......return 
03b0: 66 61 6c 73 65 3b 0d 0a 09 09 09 69 66 28 72 20  false;.....if(r 
03c0: 3e 20 31 29 20 7b 0d 0a 09 09 09 09 51 2e 70 75  > 1) {......Q.pu
03d0: 73 68 28 20 6d 61 6b 65 5f 70 61 69 72 28 72 2d  sh( make_pair(r-
03e0: 31 2c 6d 61 78 28 2a 69 74 2c 78 29 29 20 29 3b  1,max(*it,x)) );
03f0: 0d 0a 09 09 09 09 51 2e 70 75 73 68 28 20 6d 61  ......Q.push( ma
0400: 6b 65 5f 70 61 69 72 28 72 2d 31 2c 6d 69 6e 28  ke_pair(r-1,min(
0410: 2a 69 74 2c 78 29 29 20 29 3b 0d 0a 09 09 09 7d  *it,x)) );.....}
0420: 0d 0a 09 09 09 75 6e 75 73 65 64 2e 65 72 61 73  .....unused.eras
0430: 65 28 69 74 29 3b 0d 0a 09 09 7d 0d 0a 09 09 72  e(it);....}....r
0440: 65 74 75 72 6e 20 74 72 75 65 3b 0d 0a 09 7d 0d  eturn true;...}.
0450: 0a 0d 0a 2f 2f 20 42 45 47 49 4e 20 43 55 54 20  ...// BEGIN CUT 
0460: 48 45 52 45 0d 0a 09 70 75 62 6c 69 63 3a 0d 0a  HERE...public:..
0470: 09 76 6f 69 64 20 72 75 6e 5f 74 65 73 74 28 69  .void run_test(i
0480: 6e 74 20 43 61 73 65 29 20 7b 20 69 66 20 28 28  nt Case) { if ((
0490: 43 61 73 65 20 3d 3d 20 2d 31 29 20 7c 7c 20 28  Case == -1) || (
04a0: 43 61 73 65 20 3d 3d 20 30 29 29 20 74 65 73 74  Case == 0)) test
04b0: 5f 63 61 73 65 5f 30 28 29 3b 20 69 66 20 28 28  _case_0(); if ((
04c0: 43 61 73 65 20 3d 3d 20 2d 31 29 20 7c 7c 20 28  Case == -1) || (
04d0: 43 61 73 65 20 3d 3d 20 31 29 29 20 74 65 73 74  Case == 1)) test
04e0: 5f 63 61 73 65 5f 31 28 29 3b 20 69 66 20 28 28  _case_1(); if ((
04f0: 43 61 73 65 20 3d 3d 20 2d 31 29 20 7c 7c 20 28  Case == -1) || (
0500: 43 61 73 65 20 3d 3d 20 32 29 29 20 74 65 73 74  Case == 2)) test
0510: 5f 63 61 73 65 5f 32 28 29 3b 20 69 66 20 28 28  _case_2(); if ((
0520: 43 61 73 65 20 3d 3d 20 2d 31 29 20 7c 7c 20 28  Case == -1) || (
0530: 43 61 73 65 20 3d 3d 20 33 29 29 20 74 65 73 74  Case == 3)) test
0540: 5f 63 61 73 65 5f 33 28 29 3b 20 69 66 20 28 28  _case_3(); if ((
0550: 43 61 73 65 20 3d 3d 20 2d 31 29 20 7c 7c 20 28  Case == -1) || (
0560: 43 61 73 65 20 3d 3d 20 34 29 29 20 74 65 73 74  Case == 4)) test
0570: 5f 63 61 73 65 5f 34 28 29 3b 20 7d 0d 0a 09 70  _case_4(); }...p
0580: 72 69 76 61 74 65 3a 0d 0a 09 74 65 6d 70 6c 61  rivate:...templa
0590: 74 65 20 3c 74 79 70 65 6e 61 6d 65 20 54 3e 20  te <typename T> 
05a0: 73 74 72 69 6e 67 20 70 72 69 6e 74 5f 61 72 72  string print_arr
05b0: 61 79 28 63 6f 6e 73 74 20 76 65 63 74 6f 72 3c  ay(const vector<
05c0: 54 3e 20 26 56 29 20 7b 20 6f 73 74 72 69 6e 67  T> &V) { ostring
05d0: 73 74 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c 3c  stream os; os <<
05e0: 20 22 7b 20 22 3b 20 66 6f 72 20 28 74 79 70 65   "{ "; for (type
05f0: 6e 61 6d 65 20 76 65 63 74 6f 72 3c 54 3e 3a 3a  name vector<T>::
0600: 63 6f 6e 73 74 5f 69 74 65 72 61 74 6f 72 20 69  const_iterator i
0610: 74 65 72 20 3d 20 56 2e 62 65 67 69 6e 28 29 3b  ter = V.begin();
0620: 20 69 74 65 72 20 21 3d 20 56 2e 65 6e 64 28 29   iter != V.end()
0630: 3b 20 2b 2b 69 74 65 72 29 20 6f 73 20 3c 3c 20  ; ++iter) os << 
0640: 27 5c 22 27 20 3c 3c 20 2a 69 74 65 72 20 3c 3c  '\"' << *iter <<
0650: 20 22 5c 22 2c 22 3b 20 6f 73 20 3c 3c 20 22 20   "\","; os << " 
0660: 7d 22 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 74  }"; return os.st
0670: 72 28 29 3b 20 7d 0d 0a 09 76 6f 69 64 20 76 65  r(); }...void ve
0680: 72 69 66 79 5f 63 61 73 65 28 69 6e 74 20 43 61  rify_case(int Ca
0690: 73 65 2c 20 63 6f 6e 73 74 20 69 6e 74 20 26 45  se, const int &E
06a0: 78 70 65 63 74 65 64 2c 20 63 6f 6e 73 74 20 69  xpected, const i
06b0: 6e 74 20 26 52 65 63 65 69 76 65 64 29 20 7b 20  nt &Received) { 
06c0: 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20 43 61  cerr << "Test Ca
06d0: 73 65 20 23 22 20 3c 3c 20 43 61 73 65 20 3c 3c  se #" << Case <<
06e0: 20 22 2e 2e 2e 22 3b 20 69 66 20 28 45 78 70 65   "..."; if (Expe
06f0: 63 74 65 64 20 3d 3d 20 52 65 63 65 69 76 65 64  cted == Received
0700: 29 20 63 65 72 72 20 3c 3c 20 22 50 41 53 53 45  ) cerr << "PASSE
0710: 44 22 20 3c 3c 20 65 6e 64 6c 3b 20 65 6c 73 65  D" << endl; else
0720: 20 7b 20 63 65 72 72 20 3c 3c 20 22 46 41 49 4c   { cerr << "FAIL
0730: 45 44 22 20 3c 3c 20 65 6e 64 6c 3b 20 63 65 72  ED" << endl; cer
0740: 72 20 3c 3c 20 22 5c 74 45 78 70 65 63 74 65 64  r << "\tExpected
0750: 3a 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65  : \"" << Expecte
0760: 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64  d << '\"' << end
0770: 6c 3b 20 63 65 72 72 20 3c 3c 20 22 5c 74 52 65  l; cerr << "\tRe
0780: 63 65 69 76 65 64 3a 20 5c 22 22 20 3c 3c 20 52  ceived: \"" << R
0790: 65 63 65 69 76 65 64 20 3c 3c 20 27 5c 22 27 20  eceived << '\"' 
07a0: 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d 0a 09 76  << endl; } }...v
07b0: 6f 69 64 20 74 65 73 74 5f 63 61 73 65 5f 30 28  oid test_case_0(
07c0: 29 20 7b 20 69 6e 74 20 41 72 67 30 20 3d 20 32  ) { int Arg0 = 2
07d0: 3b 20 69 6e 74 20 41 72 67 31 20 3d 20 30 3b 20  ; int Arg1 = 0; 
07e0: 69 6e 74 20 41 72 67 32 20 3d 20 31 3b 20 76 65  int Arg2 = 1; ve
07f0: 72 69 66 79 5f 63 61 73 65 28 30 2c 20 41 72 67  rify_case(0, Arg
0800: 32 2c 20 67 72 65 61 74 65 73 74 53 65 65 64 28  2, greatestSeed(
0810: 41 72 67 30 2c 20 41 72 67 31 29 29 3b 20 7d 0d  Arg0, Arg1)); }.
0820: 0a 09 76 6f 69 64 20 74 65 73 74 5f 63 61 73 65  ..void test_case
0830: 5f 31 28 29 20 7b 20 69 6e 74 20 41 72 67 30 20  _1() { int Arg0 
0840: 3d 20 33 3b 20 69 6e 74 20 41 72 67 31 20 3d 20  = 3; int Arg1 = 
0850: 31 3b 20 69 6e 74 20 41 72 67 32 20 3d 20 36 3b  1; int Arg2 = 6;
0860: 20 76 65 72 69 66 79 5f 63 61 73 65 28 31 2c 20   verify_case(1, 
0870: 41 72 67 32 2c 20 67 72 65 61 74 65 73 74 53 65  Arg2, greatestSe
0880: 65 64 28 41 72 67 30 2c 20 41 72 67 31 29 29 3b  ed(Arg0, Arg1));
0890: 20 7d 0d 0a 09 76 6f 69 64 20 74 65 73 74 5f 63   }...void test_c
08a0: 61 73 65 5f 32 28 29 20 7b 20 69 6e 74 20 41 72  ase_2() { int Ar
08b0: 67 30 20 3d 20 34 3b 20 69 6e 74 20 41 72 67 31  g0 = 4; int Arg1
08c0: 20 3d 20 31 3b 20 69 6e 74 20 41 72 67 32 20 3d   = 1; int Arg2 =
08d0: 20 39 3b 20 76 65 72 69 66 79 5f 63 61 73 65 28   9; verify_case(
08e0: 32 2c 20 41 72 67 32 2c 20 67 72 65 61 74 65 73  2, Arg2, greates
08f0: 74 53 65 65 64 28 41 72 67 30 2c 20 41 72 67 31  tSeed(Arg0, Arg1
0900: 29 29 3b 20 7d 0d 0a 09 76 6f 69 64 20 74 65 73  )); }...void tes
0910: 74 5f 63 61 73 65 5f 33 28 29 20 7b 20 69 6e 74  t_case_3() { int
0920: 20 41 72 67 30 20 3d 20 37 3b 20 69 6e 74 20 41   Arg0 = 7; int A
0930: 72 67 31 20 3d 20 33 3b 20 69 6e 74 20 41 72 67  rg1 = 3; int Arg
0940: 32 20 3d 20 35 30 3b 20 76 65 72 69 66 79 5f 63  2 = 50; verify_c
0950: 61 73 65 28 33 2c 20 41 72 67 32 2c 20 67 72 65  ase(3, Arg2, gre
0960: 61 74 65 73 74 53 65 65 64 28 41 72 67 30 2c 20  atestSeed(Arg0, 
0970: 41 72 67 31 29 29 3b 20 7d 0d 0a 09 76 6f 69 64  Arg1)); }...void
0980: 20 74 65 73 74 5f 63 61 73 65 5f 34 28 29 20 7b   test_case_4() {
0990: 20 69 6e 74 20 41 72 67 30 20 3d 20 31 35 3b 20   int Arg0 = 15; 
09a0: 69 6e 74 20 41 72 67 31 20 3d 20 31 38 30 3b 20  int Arg1 = 180; 
09b0: 69 6e 74 20 41 72 67 32 20 3d 20 39 37 35 35 3b  int Arg2 = 9755;
09c0: 20 76 65 72 69 66 79 5f 63 61 73 65 28 34 2c 20   verify_case(4, 
09d0: 41 72 67 32 2c 20 67 72 65 61 74 65 73 74 53 65  Arg2, greatestSe
09e0: 65 64 28 41 72 67 30 2c 20 41 72 67 31 29 29 3b  ed(Arg0, Arg1));
09f0: 20 7d 0d 0a 0d 0a 2f 2f 20 45 4e 44 20 43 55 54   }....// END CUT
0a00: 20 48 45 52 45 0d 0a 7d 3b 0d 0a 2f 2f 20 42 45   HERE..};..// BE
0a10: 47 49 4e 20 43 55 54 20 48 45 52 45 20 0d 0a 69  GIN CUT HERE ..i
0a20: 6e 74 20 6d 61 69 6e 28 29 20 7b 20 52 50 53 54  nt main() { RPST
0a30: 6f 75 72 6e 61 6d 65 6e 74 28 29 2e 72 75 6e 5f  ournament().run_
0a40: 74 65 73 74 28 2d 31 29 3b 20 7d 0d 0a 2f 2f 20  test(-1); }..// 
0a50: 45 4e 44 20 43 55 54 20 48 45 52 45 0d 0a        END CUT HERE..