Hex Artifact Content
Not logged in

Artifact 2d1a81027397e941d6d4a39d3925a734ae3f7e49:


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 66 75 6e 63  ..#include <func
00d0: 74 69 6f 6e 61 6c 3e 0d 0a 23 69 6e 63 6c 75 64  tional>..#includ
00e0: 65 20 3c 63 6f 6d 70 6c 65 78 3e 0d 0a 23 69 6e  e <complex>..#in
00f0: 63 6c 75 64 65 20 3c 71 75 65 75 65 3e 0d 0a 23  clude <queue>..#
0100: 69 6e 63 6c 75 64 65 20 3c 73 74 61 63 6b 3e 0d  include <stack>.
0110: 0a 23 69 6e 63 6c 75 64 65 20 3c 63 6d 61 74 68  .#include <cmath
0120: 3e 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 63 61 73  >..#include <cas
0130: 73 65 72 74 3e 0d 0a 23 69 6e 63 6c 75 64 65 20  sert>..#include 
0140: 3c 74 75 70 6c 65 3e 0d 0a 75 73 69 6e 67 20 6e  <tuple>..using n
0150: 61 6d 65 73 70 61 63 65 20 73 74 64 3b 0d 0a 74  amespace std;..t
0160: 79 70 65 64 65 66 20 6c 6f 6e 67 20 6c 6f 6e 67  ypedef long long
0170: 20 4c 4c 3b 0d 0a 74 79 70 65 64 65 66 20 63 6f   LL;..typedef co
0180: 6d 70 6c 65 78 3c 64 6f 75 62 6c 65 3e 20 43 4d  mplex<double> CM
0190: 50 3b 0d 0a 0d 0a 63 6c 61 73 73 20 42 61 6c 6c  P;....class Ball
01a0: 73 49 6e 42 6f 78 65 73 20 7b 20 70 75 62 6c 69  sInBoxes { publi
01b0: 63 3a 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 6d  c:...long long m
01c0: 61 78 54 75 72 6e 73 28 6c 6f 6e 67 20 6c 6f 6e  axTurns(long lon
01d0: 67 20 4e 2c 20 6c 6f 6e 67 20 6c 6f 6e 67 20 4b  g N, long long K
01e0: 29 0d 0a 09 7b 0d 0a 09 09 69 66 28 4e 20 3c 20  )...{....if(N < 
01f0: 32 2a 4b 29 0d 0a 09 09 09 72 65 74 75 72 6e 20  2*K).....return 
0200: 73 68 6f 72 74 43 61 73 65 28 4e 2c 20 4b 29 3b  shortCase(N, K);
0210: 0d 0a 09 09 69 66 28 4e 20 3c 20 33 2a 4b 29 0d  ....if(N < 3*K).
0220: 0a 09 09 09 72 65 74 75 72 6e 20 31 20 2b 20 73  ....return 1 + s
0230: 68 6f 72 74 43 61 73 65 28 28 4e 2b 4b 29 2f 32  hortCase((N+K)/2
0240: 2c 20 4b 29 3b 0d 0a 09 09 69 66 28 4e 20 3c 20  , K);....if(N < 
0250: 31 30 2a 4b 29 0d 0a 09 09 09 72 65 74 75 72 6e  10*K).....return
0260: 20 31 20 2b 20 6d 61 78 54 75 72 6e 73 28 4e 2d   1 + maxTurns(N-
0270: 4b 2c 20 4b 29 3b 0d 0a 09 09 72 65 74 75 72 6e  K, K);....return
0280: 20 28 4e 2f 4b 2d 34 29 20 2b 20 6d 61 78 54 75   (N/K-4) + maxTu
0290: 72 6e 73 28 4e 20 2d 20 28 4e 2f 4b 2d 34 29 2a  rns(N - (N/K-4)*
02a0: 4b 2c 20 4b 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09 4c  K, K);...}.....L
02b0: 4c 20 73 68 6f 72 74 43 61 73 65 28 4c 4c 20 4e  L shortCase(LL N
02c0: 2c 20 4c 4c 20 4b 29 20 7b 0d 0a 09 09 2f 2f 20  , LL K) {....// 
02d0: 54 68 65 20 63 61 73 65 20 77 68 65 72 65 20 4e  The case where N
02e0: 20 69 73 20 73 6d 61 6c 6c 20 65 6e 6f 75 67 68   is small enough
02f0: 20 61 6e 64 20 61 6c 6c 20 70 6f 73 69 74 69 6f   and all positio
0300: 6e 73 20 61 72 65 20 70 6f 73 73 6f 69 62 6c 65  ns are possoible
0310: 2e 0d 0a 09 09 72 65 74 75 72 6e 20 73 6f 6c 76  .....return solv
0320: 65 28 4e 2d 4b 29 3b 0d 0a 09 7d 0d 0a 0d 0a 09  e(N-K);...}.....
0330: 4c 4c 20 73 6f 6c 76 65 28 4c 4c 20 4e 29 20 7b  LL solve(LL N) {
0340: 0d 0a 09 09 2f 2f 20 44 65 74 65 72 6d 69 6e 65  ....// Determine
0350: 20 77 68 61 74 20 6e 75 6d 62 65 72 20 69 6e 20   what number in 
0360: 5b 30 2c 4e 5d 20 6f 75 74 20 6f 66 20 4e 20 62  [0,N] out of N b
0370: 6f 78 65 73 20 61 72 65 20 66 69 6c 6c 65 64 2e  oxes are filled.
0380: 0d 0a 09 09 72 65 74 75 72 6e 20 4e 20 3f 20 73  ....return N ? s
0390: 6f 6c 76 65 28 4e 2f 32 29 2b 31 20 3a 20 30 3b  olve(N/2)+1 : 0;
03a0: 0d 0a 09 7d 0d 0a 7d 3b 0d 0a 0d 0a 2f 2f 20 42  ...}..};....// B
03b0: 45 47 49 4e 20 43 55 54 20 48 45 52 45 0d 0a 23  EGIN CUT HERE..#
03c0: 69 6e 63 6c 75 64 65 20 3c 63 74 69 6d 65 3e 0d  include <ctime>.
03d0: 0a 64 6f 75 62 6c 65 20 73 74 61 72 74 5f 74 69  .double start_ti
03e0: 6d 65 3b 20 73 74 72 69 6e 67 20 74 69 6d 65 72  me; string timer
03f0: 28 29 0d 0a 20 7b 20 6f 73 74 72 69 6e 67 73 74  ().. { ostringst
0400: 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c 3c 20 22  ream os; os << "
0410: 20 28 22 20 3c 3c 20 69 6e 74 28 28 63 6c 6f 63   (" << int((cloc
0420: 6b 28 29 2d 73 74 61 72 74 5f 74 69 6d 65 29 2f  k()-start_time)/
0430: 43 4c 4f 43 4b 53 5f 50 45 52 5f 53 45 43 2a 31  CLOCKS_PER_SEC*1
0440: 30 30 30 29 20 3c 3c 20 22 20 6d 73 65 63 29 22  000) << " msec)"
0450: 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 74 72 28  ; return os.str(
0460: 29 3b 20 7d 0d 0a 74 65 6d 70 6c 61 74 65 3c 74  ); }..template<t
0470: 79 70 65 6e 61 6d 65 20 54 3e 20 6f 73 74 72 65  ypename T> ostre
0480: 61 6d 26 20 6f 70 65 72 61 74 6f 72 3c 3c 28 6f  am& operator<<(o
0490: 73 74 72 65 61 6d 26 20 6f 73 2c 20 63 6f 6e 73  stream& os, cons
04a0: 74 20 76 65 63 74 6f 72 3c 54 3e 26 20 76 29 0d  t vector<T>& v).
04b0: 0a 20 7b 20 6f 73 20 3c 3c 20 22 7b 20 22 3b 0d  . { os << "{ ";.
04c0: 0a 20 20 20 66 6f 72 28 74 79 70 65 6e 61 6d 65  .   for(typename
04d0: 20 76 65 63 74 6f 72 3c 54 3e 3a 3a 63 6f 6e 73   vector<T>::cons
04e0: 74 5f 69 74 65 72 61 74 6f 72 20 69 74 3d 76 2e  t_iterator it=v.
04f0: 62 65 67 69 6e 28 29 3b 20 69 74 21 3d 76 2e 65  begin(); it!=v.e
0500: 6e 64 28 29 3b 20 2b 2b 69 74 29 0d 0a 20 20 20  nd(); ++it)..   
0510: 6f 73 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 2a 69  os << '\"' << *i
0520: 74 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 28 69 74  t << '\"' << (it
0530: 2b 31 3d 3d 76 2e 65 6e 64 28 29 20 3f 20 22 22  +1==v.end() ? ""
0540: 20 3a 20 22 2c 20 22 29 3b 20 6f 73 20 3c 3c 20   : ", "); os << 
0550: 22 20 7d 22 3b 20 72 65 74 75 72 6e 20 6f 73 3b  " }"; return os;
0560: 20 7d 0d 0a 76 6f 69 64 20 76 65 72 69 66 79 5f   }..void verify_
0570: 63 61 73 65 28 63 6f 6e 73 74 20 6c 6f 6e 67 20  case(const long 
0580: 6c 6f 6e 67 26 20 45 78 70 65 63 74 65 64 2c 20  long& Expected, 
0590: 63 6f 6e 73 74 20 6c 6f 6e 67 20 6c 6f 6e 67 26  const long long&
05a0: 20 52 65 63 65 69 76 65 64 29 20 7b 0d 0a 20 62   Received) {.. b
05b0: 6f 6f 6c 20 6f 6b 20 3d 20 28 45 78 70 65 63 74  ool ok = (Expect
05c0: 65 64 20 3d 3d 20 52 65 63 65 69 76 65 64 29 3b  ed == Received);
05d0: 0d 0a 20 69 66 28 6f 6b 29 20 63 65 72 72 20 3c  .. if(ok) cerr <
05e0: 3c 20 22 50 41 53 53 45 44 22 20 3c 3c 20 74 69  < "PASSED" << ti
05f0: 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c 3b 20 20  mer() << endl;  
0600: 65 6c 73 65 20 7b 20 63 65 72 72 20 3c 3c 20 22  else { cerr << "
0610: 46 41 49 4c 45 44 22 20 3c 3c 20 74 69 6d 65 72  FAILED" << timer
0620: 28 29 20 3c 3c 20 65 6e 64 6c 3b 0d 0a 20 63 65  () << endl;.. ce
0630: 72 72 20 3c 3c 20 22 5c 74 6f 3a 20 5c 22 22 20  rr << "\to: \"" 
0640: 3c 3c 20 45 78 70 65 63 74 65 64 20 3c 3c 20 27  << Expected << '
0650: 5c 22 27 20 3c 3c 20 65 6e 64 6c 20 3c 3c 20 22  \"' << endl << "
0660: 5c 74 78 3a 20 5c 22 22 20 3c 3c 20 52 65 63 65  \tx: \"" << Rece
0670: 69 76 65 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20  ived << '\"' << 
0680: 65 6e 64 6c 3b 20 7d 20 7d 0d 0a 23 64 65 66 69  endl; } }..#defi
0690: 6e 65 20 43 41 53 45 28 4e 29 20 7b 63 65 72 72  ne CASE(N) {cerr
06a0: 20 3c 3c 20 22 54 65 73 74 20 43 61 73 65 20 23   << "Test Case #
06b0: 22 20 3c 3c 20 4e 20 3c 3c 20 22 2e 2e 2e 22 20  " << N << "..." 
06c0: 3c 3c 20 66 6c 75 73 68 3b 20 73 74 61 72 74 5f  << flush; start_
06d0: 74 69 6d 65 3d 63 6c 6f 63 6b 28 29 3b 0d 0a 23  time=clock();..#
06e0: 64 65 66 69 6e 65 20 45 4e 44 09 20 76 65 72 69  define END. veri
06f0: 66 79 5f 63 61 73 65 28 5f 2c 20 42 61 6c 6c 73  fy_case(_, Balls
0700: 49 6e 42 6f 78 65 73 28 29 2e 6d 61 78 54 75 72  InBoxes().maxTur
0710: 6e 73 28 4e 2c 20 4b 29 29 3b 7d 0d 0a 69 6e 74  ns(N, K));}..int
0720: 20 6d 61 69 6e 28 29 7b 0d 0a 0d 0a 43 41 53 45   main(){....CASE
0730: 28 30 29 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20  (0)...long long 
0740: 4e 20 3d 20 31 30 4c 4c 3b 20 0d 0a 09 6c 6f 6e  N = 10LL; ...lon
0750: 67 20 6c 6f 6e 67 20 4b 20 3d 20 31 30 4c 4c 3b  g long K = 10LL;
0760: 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20   ...long long _ 
0770: 3d 20 30 4c 4c 3b 20 0d 0a 45 4e 44 0d 0a 43 41  = 0LL; ..END..CA
0780: 53 45 28 31 29 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e  SE(1)...long lon
0790: 67 20 4e 20 3d 20 31 30 30 4c 4c 3b 20 0d 0a 09  g N = 100LL; ...
07a0: 6c 6f 6e 67 20 6c 6f 6e 67 20 4b 20 3d 20 31 4c  long long K = 1L
07b0: 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20  L; ...long long 
07c0: 5f 20 3d 20 39 39 4c 4c 3b 20 0d 0a 45 4e 44 0d  _ = 99LL; ..END.
07d0: 0a 43 41 53 45 28 32 29 0d 0a 09 6c 6f 6e 67 20  .CASE(2)...long 
07e0: 6c 6f 6e 67 20 4e 20 3d 20 31 30 30 30 4c 4c 3b  long N = 1000LL;
07f0: 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 4b 20   ...long long K 
0800: 3d 20 39 39 39 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67  = 999LL; ...long
0810: 20 6c 6f 6e 67 20 5f 20 3d 20 31 4c 4c 3b 20 0d   long _ = 1LL; .
0820: 0a 45 4e 44 0d 0a 43 41 53 45 28 33 29 0d 0a 09  .END..CASE(3)...
0830: 6c 6f 6e 67 20 6c 6f 6e 67 20 4e 20 3d 20 31 30  long long N = 10
0840: 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67  LL; ...long long
0850: 20 4b 20 3d 20 35 4c 4c 3b 20 0d 0a 09 6c 6f 6e   K = 5LL; ...lon
0860: 67 20 6c 6f 6e 67 20 5f 20 3d 20 33 4c 4c 3b 20  g long _ = 3LL; 
0870: 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 34 29 0d 0a  ..END..CASE(4)..
0880: 09 6c 6f 6e 67 20 6c 6f 6e 67 20 4e 20 3d 20 31  .long long N = 1
0890: 32 33 34 35 36 37 38 39 38 37 36 35 4c 4c 3b 20  234567898765LL; 
08a0: 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 4b 20 3d  ...long long K =
08b0: 20 36 35 38 31 36 37 35 37 38 4c 4c 3b 20 0d 0a   658167578LL; ..
08c0: 09 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 2d  .long long _ = -
08d0: 31 4c 4c 3b 0d 0a 45 4e 44 0d 0a 2f 2a 0d 0a 43  1LL;..END../*..C
08e0: 41 53 45 28 35 29 0d 0a 09 6c 6f 6e 67 20 6c 6f  ASE(5)...long lo
08f0: 6e 67 20 4e 20 3d 20 4c 4c 3b 20 0d 0a 09 6c 6f  ng N = LL; ...lo
0900: 6e 67 20 6c 6f 6e 67 20 4b 20 3d 20 4c 4c 3b 20  ng long K = LL; 
0910: 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d  ...long long _ =
0920: 20 4c 4c 3b 20 0d 0a 45 4e 44 0d 0a 2a 2f 0d 0a   LL; ..END..*/..
0930: 7d 0d 0a 2f 2f 20 45 4e 44 20 43 55 54 20 48 45  }..// END CUT HE
0940: 52 45 0d 0a                                      RE..