Artifact fca3dc328f41b941ad151295e7ad4ab1ce18737a:
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 41 6c 69 63 P;....class Alic
01a0: 65 47 61 6d 65 20 7b 20 70 75 62 6c 69 63 3a 0d eGame { public:.
01b0: 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 66 69 6e 64 ..long long find
01c0: 4d 69 6e 69 6d 75 6d 56 61 6c 75 65 28 6c 6f 6e MinimumValue(lon
01d0: 67 20 6c 6f 6e 67 20 78 2c 20 6c 6f 6e 67 20 6c g long x, long l
01e0: 6f 6e 67 20 79 29 0d 0a 09 7b 0d 0a 09 09 4c 4c ong y)...{....LL
01f0: 20 63 20 3d 20 28 4c 4c 29 73 71 72 74 28 78 2b c = (LL)sqrt(x+
0200: 79 29 3b 0d 0a 09 09 66 6f 72 28 4c 4c 20 6e 3d y);....for(LL n=
0210: 6d 61 78 28 30 4c 4c 2c 20 63 2d 31 30 29 3b 20 max(0LL, c-10);
0220: 6e 3c 3d 63 2b 31 30 3b 20 2b 2b 6e 29 0d 0a 09 n<=c+10; ++n)...
0230: 09 09 69 66 28 6e 2a 6e 20 3d 3d 20 78 2b 79 29 ..if(n*n == x+y)
0240: 0d 0a 09 09 09 09 72 65 74 75 72 6e 20 73 6f 6c ......return sol
0250: 76 65 28 69 6e 74 28 6e 29 2c 20 78 29 3b 0d 0a ve(int(n), x);..
0260: 09 09 72 65 74 75 72 6e 20 2d 31 3b 0d 0a 09 7d ..return -1;...}
0270: 0d 0a 0d 0a 09 4c 4c 20 73 6f 6c 76 65 28 69 6e .....LL solve(in
0280: 74 20 6e 2c 20 4c 4c 20 78 29 0d 0a 09 7b 0d 0a t n, LL x)...{..
0290: 09 09 69 6e 74 20 63 6e 74 20 3d 20 30 3b 0d 0a ..int cnt = 0;..
02a0: 09 09 66 6f 72 28 69 6e 74 20 74 3d 6e 3b 20 74 ..for(int t=n; t
02b0: 3e 3d 31 3b 20 2d 2d 74 29 0d 0a 09 09 7b 0d 0a >=1; --t)....{..
02c0: 09 09 09 69 6e 74 20 73 20 3d 20 32 2a 74 2d 31 ...int s = 2*t-1
02d0: 3b 0d 0a 09 09 09 69 66 28 73 20 3c 3d 20 78 29 ;.....if(s <= x)
02e0: 20 7b 0d 0a 09 09 09 09 78 20 2d 3d 20 73 3b 0d {......x -= s;.
02f0: 0a 09 09 09 09 63 6e 74 20 2b 2b 3b 0d 0a 09 09 .....cnt ++;....
0300: 09 7d 0d 0a 09 09 7d 0d 0a 09 09 72 65 74 75 72 .}....}....retur
0310: 6e 20 63 6e 74 3b 0d 0a 09 7d 0d 0a 7d 3b 0d 0a n cnt;...}..};..
0320: 0d 0a 2f 2f 20 42 45 47 49 4e 20 43 55 54 20 48 ..// BEGIN CUT H
0330: 45 52 45 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 63 ERE..#include <c
0340: 74 69 6d 65 3e 0d 0a 64 6f 75 62 6c 65 20 73 74 time>..double st
0350: 61 72 74 5f 74 69 6d 65 3b 20 73 74 72 69 6e 67 art_time; string
0360: 20 74 69 6d 65 72 28 29 0d 0a 20 7b 20 6f 73 74 timer().. { ost
0370: 72 69 6e 67 73 74 72 65 61 6d 20 6f 73 3b 20 6f ringstream os; o
0380: 73 20 3c 3c 20 22 20 28 22 20 3c 3c 20 69 6e 74 s << " (" << int
0390: 28 28 63 6c 6f 63 6b 28 29 2d 73 74 61 72 74 5f ((clock()-start_
03a0: 74 69 6d 65 29 2f 43 4c 4f 43 4b 53 5f 50 45 52 time)/CLOCKS_PER
03b0: 5f 53 45 43 2a 31 30 30 30 29 20 3c 3c 20 22 20 _SEC*1000) << "
03c0: 6d 73 65 63 29 22 3b 20 72 65 74 75 72 6e 20 6f msec)"; return o
03d0: 73 2e 73 74 72 28 29 3b 20 7d 0d 0a 74 65 6d 70 s.str(); }..temp
03e0: 6c 61 74 65 3c 74 79 70 65 6e 61 6d 65 20 54 3e late<typename T>
03f0: 20 6f 73 74 72 65 61 6d 26 20 6f 70 65 72 61 74 ostream& operat
0400: 6f 72 3c 3c 28 6f 73 74 72 65 61 6d 26 20 6f 73 or<<(ostream& os
0410: 2c 20 63 6f 6e 73 74 20 76 65 63 74 6f 72 3c 54 , const vector<T
0420: 3e 26 20 76 29 0d 0a 20 7b 20 6f 73 20 3c 3c 20 >& v).. { os <<
0430: 22 7b 20 22 3b 0d 0a 20 20 20 66 6f 72 28 74 79 "{ ";.. for(ty
0440: 70 65 6e 61 6d 65 20 76 65 63 74 6f 72 3c 54 3e pename vector<T>
0450: 3a 3a 63 6f 6e 73 74 5f 69 74 65 72 61 74 6f 72 ::const_iterator
0460: 20 69 74 3d 76 2e 62 65 67 69 6e 28 29 3b 20 69 it=v.begin(); i
0470: 74 21 3d 76 2e 65 6e 64 28 29 3b 20 2b 2b 69 74 t!=v.end(); ++it
0480: 29 0d 0a 20 20 20 6f 73 20 3c 3c 20 27 5c 22 27 ).. os << '\"'
0490: 20 3c 3c 20 2a 69 74 20 3c 3c 20 27 5c 22 27 20 << *it << '\"'
04a0: 3c 3c 20 28 69 74 2b 31 3d 3d 76 2e 65 6e 64 28 << (it+1==v.end(
04b0: 29 20 3f 20 22 22 20 3a 20 22 2c 20 22 29 3b 20 ) ? "" : ", ");
04c0: 6f 73 20 3c 3c 20 22 20 7d 22 3b 20 72 65 74 75 os << " }"; retu
04d0: 72 6e 20 6f 73 3b 20 7d 0d 0a 76 6f 69 64 20 76 rn os; }..void v
04e0: 65 72 69 66 79 5f 63 61 73 65 28 63 6f 6e 73 74 erify_case(const
04f0: 20 6c 6f 6e 67 20 6c 6f 6e 67 26 20 45 78 70 65 long long& Expe
0500: 63 74 65 64 2c 20 63 6f 6e 73 74 20 6c 6f 6e 67 cted, const long
0510: 20 6c 6f 6e 67 26 20 52 65 63 65 69 76 65 64 29 long& Received)
0520: 20 7b 0d 0a 20 62 6f 6f 6c 20 6f 6b 20 3d 20 28 {.. bool ok = (
0530: 45 78 70 65 63 74 65 64 20 3d 3d 20 52 65 63 65 Expected == Rece
0540: 69 76 65 64 29 3b 0d 0a 20 69 66 28 6f 6b 29 20 ived);.. if(ok)
0550: 63 65 72 72 20 3c 3c 20 22 50 41 53 53 45 44 22 cerr << "PASSED"
0560: 20 3c 3c 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 << timer() << e
0570: 6e 64 6c 3b 20 20 65 6c 73 65 20 7b 20 63 65 72 ndl; else { cer
0580: 72 20 3c 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c r << "FAILED" <<
0590: 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c timer() << endl
05a0: 3b 0d 0a 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f ;.. cerr << "\to
05b0: 3a 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65 : \"" << Expecte
05c0: 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 d << '\"' << end
05d0: 6c 20 3c 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c l << "\tx: \"" <
05e0: 3c 20 52 65 63 65 69 76 65 64 20 3c 3c 20 27 5c < Received << '\
05f0: 22 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d "' << endl; } }.
0600: 0a 23 64 65 66 69 6e 65 20 43 41 53 45 28 4e 29 .#define CASE(N)
0610: 20 7b 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20 {cerr << "Test
0620: 43 61 73 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20 Case #" << N <<
0630: 22 2e 2e 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20 "..." << flush;
0640: 73 74 61 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b start_time=clock
0650: 28 29 3b 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44 ();..#define END
0660: 09 20 76 65 72 69 66 79 5f 63 61 73 65 28 5f 2c . verify_case(_,
0670: 20 41 6c 69 63 65 47 61 6d 65 28 29 2e 66 69 6e AliceGame().fin
0680: 64 4d 69 6e 69 6d 75 6d 56 61 6c 75 65 28 78 2c dMinimumValue(x,
0690: 20 79 29 29 3b 7d 0d 0a 69 6e 74 20 6d 61 69 6e y));}..int main
06a0: 28 29 7b 0d 0a 0d 0a 43 41 53 45 28 30 29 0d 0a (){....CASE(0)..
06b0: 09 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d 20 38 .long long x = 8
06c0: 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 LL; ...long long
06d0: 20 79 20 3d 20 31 37 4c 4c 3b 20 0d 0a 09 6c 6f y = 17LL; ...lo
06e0: 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 32 4c 4c 3b ng long _ = 2LL;
06f0: 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 31 29 0d ..END..CASE(1).
0700: 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d 20 ..long long x =
0710: 31 37 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 17LL; ...long lo
0720: 6e 67 20 79 20 3d 20 38 4c 4c 3b 20 0d 0a 09 6c ng y = 8LL; ...l
0730: 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 33 4c 4c ong long _ = 3LL
0740: 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 32 29 ; ..END..CASE(2)
0750: 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d ...long long x =
0760: 20 30 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 0LL; ...long lo
0770: 6e 67 20 79 20 3d 20 30 4c 4c 3b 20 0d 0a 09 6c ng y = 0LL; ...l
0780: 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 30 4c 4c ong long _ = 0LL
0790: 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 33 29 ; ..END..CASE(3)
07a0: 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d ...long long x =
07b0: 20 39 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 9LL; ...long lo
07c0: 6e 67 20 79 20 3d 20 39 4c 4c 3b 20 0d 0a 09 6c ng y = 9LL; ...l
07d0: 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 2d 31 4c ong long _ = -1L
07e0: 4c 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 34 L; ..END..CASE(4
07f0: 29 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 )...long long x
0800: 3d 20 35 30 30 30 30 30 4c 4c 3b 20 0d 0a 09 6c = 500000LL; ...l
0810: 6f 6e 67 20 6c 6f 6e 67 20 79 20 3d 20 35 30 30 ong long y = 500
0820: 30 30 30 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 000LL; ...long l
0830: 6f 6e 67 20 5f 20 3d 20 32 39 34 4c 4c 3b 20 0d ong _ = 294LL; .
0840: 0a 45 4e 44 0d 0a 43 41 53 45 28 35 29 0d 0a 09 .END..CASE(5)...
0850: 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d 20 30 4c long long x = 0L
0860: 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 L; ...long long
0870: 79 20 3d 20 34 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 y = 4LL; ...long
0880: 20 6c 6f 6e 67 20 5f 20 3d 20 30 4c 4c 3b 20 0d long _ = 0LL; .
0890: 0a 45 4e 44 0d 0a 43 41 53 45 28 36 29 0d 0a 09 .END..CASE(6)...
08a0: 6c 6f 6e 67 20 6c 6f 6e 67 20 78 20 3d 20 34 4c long long x = 4L
08b0: 4c 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 L; ...long long
08c0: 79 20 3d 20 30 4c 4c 3b 20 0d 0a 09 6c 6f 6e 67 y = 0LL; ...long
08d0: 20 6c 6f 6e 67 20 5f 20 3d 20 32 4c 4c 3b 20 0d long _ = 2LL; .
08e0: 0a 45 4e 44 0d 0a 7d 0d 0a 2f 2f 20 45 4e 44 20 .END..}..// END
08f0: 43 55 54 20 48 45 52 45 0d 0a CUT HERE..