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 63 73 74 72 69 6e 67 3e 0d 0a 75 73 69 6e 67 <cstring>..using
0150: 20 6e 61 6d 65 73 70 61 63 65 20 73 74 64 3b 0d namespace std;.
0160: 0a 74 79 70 65 64 65 66 20 6c 6f 6e 67 20 6c 6f .typedef long lo
0170: 6e 67 20 4c 4c 3b 0d 0a 74 79 70 65 64 65 66 20 ng LL;..typedef
0180: 63 6f 6d 70 6c 65 78 3c 64 6f 75 62 6c 65 3e 20 complex<double>
0190: 43 4d 50 3b 0d 0a 0d 0a 63 6c 61 73 73 20 4e 69 CMP;....class Ni
01a0: 73 6f 6b 75 20 7b 20 70 75 62 6c 69 63 3a 0d 0a soku { public:..
01b0: 20 20 20 64 6f 75 62 6c 65 20 74 68 65 4d 61 78 double theMax
01c0: 28 76 65 63 74 6f 72 20 3c 64 6f 75 62 6c 65 3e (vector <double>
01d0: 20 63 61 72 64 73 29 20 0d 0a 20 20 20 7b 0d 0a cards) .. {..
01e0: 20 20 20 20 20 20 73 6f 72 74 28 63 61 72 64 73 sort(cards
01f0: 2e 62 65 67 69 6e 28 29 2c 20 63 61 72 64 73 2e .begin(), cards.
0200: 65 6e 64 28 29 29 3b 0d 0a 0d 0a 20 20 20 20 20 end());....
0210: 20 64 6f 75 62 6c 65 20 61 6e 73 20 3d 20 30 2e double ans = 0.
0220: 30 3b 0d 0a 20 20 20 20 20 20 66 6f 72 28 69 6e 0;.. for(in
0230: 74 20 69 3d 30 3b 20 32 2a 69 3c 3d 63 61 72 64 t i=0; 2*i<=card
0240: 73 2e 73 69 7a 65 28 29 3b 20 2b 2b 69 29 0d 0a s.size(); ++i)..
0250: 20 20 20 20 20 20 20 20 20 61 6e 73 20 3d 20 6d ans = m
0260: 61 78 28 61 6e 73 2c 0d 0a 20 20 20 20 20 20 20 ax(ans,..
0270: 20 20 20 20 20 61 63 63 75 6d 75 6c 61 74 65 28 accumulate(
0280: 63 61 72 64 73 2e 62 65 67 69 6e 28 29 2b 32 2a cards.begin()+2*
0290: 69 2c 20 63 61 72 64 73 2e 65 6e 64 28 29 2c 0d i, cards.end(),.
02a0: 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 .
02b0: 69 6e 6e 65 72 5f 70 72 6f 64 75 63 74 28 20 63 inner_product( c
02c0: 61 72 64 73 2e 62 65 67 69 6e 28 29 2c 20 63 61 ards.begin(), ca
02d0: 72 64 73 2e 62 65 67 69 6e 28 29 2b 69 2c 0d 0a rds.begin()+i,..
02e0: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
02f0: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 61 ca
0300: 72 64 73 2e 72 65 6e 64 28 29 2d 32 2a 69 2c 0d rds.rend()-2*i,.
0310: 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 .
0320: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 1
0330: 2e 30 2c 20 6d 75 6c 74 69 70 6c 69 65 73 3c 64 .0, multiplies<d
0340: 6f 75 62 6c 65 3e 28 29 2c 20 70 6c 75 73 3c 64 ouble>(), plus<d
0350: 6f 75 62 6c 65 3e 28 29 20 29 2c 0d 0a 20 20 20 ouble>() ),..
0360: 20 20 20 20 20 20 20 20 20 20 20 20 6d 75 6c 74 mult
0370: 69 70 6c 69 65 73 3c 64 6f 75 62 6c 65 3e 28 29 iplies<double>()
0380: 0d 0a 20 20 20 20 20 20 20 20 20 20 20 20 29 0d .. ).
0390: 0a 20 20 20 20 20 20 20 20 20 29 3b 0d 0a 20 20 . );..
03a0: 20 20 20 20 72 65 74 75 72 6e 20 61 6e 73 3b 0d return ans;.
03b0: 0a 20 20 20 7d 0d 0a 7d 3b 0d 0a 0d 0a 2f 2f 20 . }..};....//
03c0: 42 45 47 49 4e 20 43 55 54 20 48 45 52 45 0d 0a BEGIN CUT HERE..
03d0: 23 69 6e 63 6c 75 64 65 20 3c 63 74 69 6d 65 3e #include <ctime>
03e0: 0d 0a 64 6f 75 62 6c 65 20 73 74 61 72 74 5f 74 ..double start_t
03f0: 69 6d 65 3b 20 73 74 72 69 6e 67 20 74 69 6d 65 ime; string time
0400: 72 28 29 0d 0a 20 7b 20 6f 73 74 72 69 6e 67 73 r().. { ostrings
0410: 74 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c 3c 20 tream os; os <<
0420: 22 20 28 22 20 3c 3c 20 69 6e 74 28 28 63 6c 6f " (" << int((clo
0430: 63 6b 28 29 2d 73 74 61 72 74 5f 74 69 6d 65 29 ck()-start_time)
0440: 2f 43 4c 4f 43 4b 53 5f 50 45 52 5f 53 45 43 2a /CLOCKS_PER_SEC*
0450: 31 30 30 30 29 20 3c 3c 20 22 20 6d 73 65 63 29 1000) << " msec)
0460: 22 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 74 72 "; return os.str
0470: 28 29 3b 20 7d 0d 0a 74 65 6d 70 6c 61 74 65 3c (); }..template<
0480: 74 79 70 65 6e 61 6d 65 20 54 3e 20 6f 73 74 72 typename T> ostr
0490: 65 61 6d 26 20 6f 70 65 72 61 74 6f 72 3c 3c 28 eam& operator<<(
04a0: 6f 73 74 72 65 61 6d 26 20 6f 73 2c 20 63 6f 6e ostream& os, con
04b0: 73 74 20 76 65 63 74 6f 72 3c 54 3e 26 20 76 29 st vector<T>& v)
04c0: 0d 0a 20 7b 20 6f 73 20 3c 3c 20 22 7b 20 22 3b .. { os << "{ ";
04d0: 0d 0a 20 20 20 66 6f 72 28 74 79 70 65 6e 61 6d .. for(typenam
04e0: 65 20 76 65 63 74 6f 72 3c 54 3e 3a 3a 63 6f 6e e vector<T>::con
04f0: 73 74 5f 69 74 65 72 61 74 6f 72 20 69 74 3d 76 st_iterator it=v
0500: 2e 62 65 67 69 6e 28 29 3b 20 69 74 21 3d 76 2e .begin(); it!=v.
0510: 65 6e 64 28 29 3b 20 2b 2b 69 74 29 0d 0a 20 20 end(); ++it)..
0520: 20 6f 73 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 2a os << '\"' << *
0530: 69 74 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 28 69 it << '\"' << (i
0540: 74 2b 31 3d 3d 76 2e 65 6e 64 28 29 20 3f 20 22 t+1==v.end() ? "
0550: 22 20 3a 20 22 2c 20 22 29 3b 20 6f 73 20 3c 3c " : ", "); os <<
0560: 20 22 20 7d 22 3b 20 72 65 74 75 72 6e 20 6f 73 " }"; return os
0570: 3b 20 7d 0d 0a 76 6f 69 64 20 76 65 72 69 66 79 ; }..void verify
0580: 5f 63 61 73 65 28 63 6f 6e 73 74 20 64 6f 75 62 _case(const doub
0590: 6c 65 26 20 45 78 70 65 63 74 65 64 2c 20 63 6f le& Expected, co
05a0: 6e 73 74 20 64 6f 75 62 6c 65 26 20 52 65 63 65 nst double& Rece
05b0: 69 76 65 64 29 20 7b 0d 0a 20 62 6f 6f 6c 20 6f ived) {.. bool o
05c0: 6b 20 3d 20 28 61 62 73 28 45 78 70 65 63 74 65 k = (abs(Expecte
05d0: 64 20 2d 20 52 65 63 65 69 76 65 64 29 20 3c 20 d - Received) <
05e0: 31 65 2d 39 29 3b 0d 0a 20 69 66 28 6f 6b 29 20 1e-9);.. if(ok)
05f0: 63 65 72 72 20 3c 3c 20 22 50 41 53 53 45 44 22 cerr << "PASSED"
0600: 20 3c 3c 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 << timer() << e
0610: 6e 64 6c 3b 20 20 65 6c 73 65 20 7b 20 63 65 72 ndl; else { cer
0620: 72 20 3c 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c r << "FAILED" <<
0630: 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c timer() << endl
0640: 3b 0d 0a 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f ;.. cerr << "\to
0650: 3a 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65 : \"" << Expecte
0660: 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 d << '\"' << end
0670: 6c 20 3c 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c l << "\tx: \"" <
0680: 3c 20 52 65 63 65 69 76 65 64 20 3c 3c 20 27 5c < Received << '\
0690: 22 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d "' << endl; } }.
06a0: 0a 23 64 65 66 69 6e 65 20 43 41 53 45 28 4e 29 .#define CASE(N)
06b0: 20 7b 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20 {cerr << "Test
06c0: 43 61 73 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20 Case #" << N <<
06d0: 22 2e 2e 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20 "..." << flush;
06e0: 73 74 61 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b start_time=clock
06f0: 28 29 3b 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44 ();..#define END
0700: 20 20 20 20 76 65 72 69 66 79 5f 63 61 73 65 28 verify_case(
0710: 5f 2c 20 4e 69 73 6f 6b 75 28 29 2e 74 68 65 4d _, Nisoku().theM
0720: 61 78 28 63 61 72 64 73 29 29 3b 7d 0d 0a 69 6e ax(cards));}..in
0730: 74 20 6d 61 69 6e 28 29 7b 0d 0a 0d 0a 43 41 53 t main(){....CAS
0740: 45 28 30 29 0d 0a 20 20 20 64 6f 75 62 6c 65 20 E(0).. double
0750: 63 61 72 64 73 5f 5b 5d 20 3d 20 7b 35 2c 20 38 cards_[] = {5, 8
0760: 7d 3b 0d 0a 20 20 20 20 20 76 65 63 74 6f 72 20 };.. vector
0770: 3c 64 6f 75 62 6c 65 3e 20 63 61 72 64 73 28 63 <double> cards(c
0780: 61 72 64 73 5f 2c 20 63 61 72 64 73 5f 2b 73 69 ards_, cards_+si
0790: 7a 65 6f 66 28 63 61 72 64 73 5f 29 2f 73 69 7a zeof(cards_)/siz
07a0: 65 6f 66 28 2a 63 61 72 64 73 5f 29 29 3b 20 0d eof(*cards_)); .
07b0: 0a 20 20 20 64 6f 75 62 6c 65 20 5f 20 3d 20 34 . double _ = 4
07c0: 30 2e 30 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 0.0; ..END..CASE
07d0: 28 31 29 0d 0a 20 20 20 64 6f 75 62 6c 65 20 63 (1).. double c
07e0: 61 72 64 73 5f 5b 5d 20 3d 20 7b 31 2e 35 2c 20 ards_[] = {1.5,
07f0: 31 2e 38 7d 3b 0d 0a 20 20 20 20 20 76 65 63 74 1.8};.. vect
0800: 6f 72 20 3c 64 6f 75 62 6c 65 3e 20 63 61 72 64 or <double> card
0810: 73 28 63 61 72 64 73 5f 2c 20 63 61 72 64 73 5f s(cards_, cards_
0820: 2b 73 69 7a 65 6f 66 28 63 61 72 64 73 5f 29 2f +sizeof(cards_)/
0830: 73 69 7a 65 6f 66 28 2a 63 61 72 64 73 5f 29 29 sizeof(*cards_))
0840: 3b 20 0d 0a 20 20 20 64 6f 75 62 6c 65 20 5f 20 ; .. double _
0850: 3d 20 33 2e 33 3b 20 0d 0a 45 4e 44 0d 0a 43 41 = 3.3; ..END..CA
0860: 53 45 28 32 29 0d 0a 20 20 20 64 6f 75 62 6c 65 SE(2).. double
0870: 20 63 61 72 64 73 5f 5b 5d 20 3d 20 7b 38 2e 32 cards_[] = {8.2
0880: 36 2c 20 37 2e 35 34 2c 20 33 2e 32 35 36 37 7d 6, 7.54, 3.2567}
0890: 3b 0d 0a 20 20 20 20 20 76 65 63 74 6f 72 20 3c ;.. vector <
08a0: 64 6f 75 62 6c 65 3e 20 63 61 72 64 73 28 63 61 double> cards(ca
08b0: 72 64 73 5f 2c 20 63 61 72 64 73 5f 2b 73 69 7a rds_, cards_+siz
08c0: 65 6f 66 28 63 61 72 64 73 5f 29 2f 73 69 7a 65 eof(cards_)/size
08d0: 6f 66 28 2a 63 61 72 64 73 5f 29 29 3b 20 0d 0a of(*cards_)); ..
08e0: 20 20 20 64 6f 75 62 6c 65 20 5f 20 3d 20 32 30 double _ = 20
08f0: 32 2e 38 32 38 35 37 38 36 38 3b 20 0d 0a 45 4e 2.82857868; ..EN
0900: 44 0d 0a 43 41 53 45 28 33 29 0d 0a 20 20 20 64 D..CASE(3).. d
0910: 6f 75 62 6c 65 20 63 61 72 64 73 5f 5b 5d 20 3d ouble cards_[] =
0920: 20 7b 31 2e 35 2c 20 31 2e 37 2c 20 31 2e 36 2c {1.5, 1.7, 1.6,
0930: 20 31 2e 35 7d 3b 0d 0a 20 20 20 20 20 76 65 63 1.5};.. vec
0940: 74 6f 72 20 3c 64 6f 75 62 6c 65 3e 20 63 61 72 tor <double> car
0950: 64 73 28 63 61 72 64 73 5f 2c 20 63 61 72 64 73 ds(cards_, cards
0960: 5f 2b 73 69 7a 65 6f 66 28 63 61 72 64 73 5f 29 _+sizeof(cards_)
0970: 2f 73 69 7a 65 6f 66 28 2a 63 61 72 64 73 5f 29 /sizeof(*cards_)
0980: 29 3b 20 0d 0a 20 20 20 64 6f 75 62 6c 65 20 5f ); .. double _
0990: 20 3d 20 39 2e 39 32 30 30 30 30 30 30 30 30 30 = 9.92000000000
09a0: 30 30 30 32 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 0002; ..END..CAS
09b0: 45 28 34 29 0d 0a 20 20 20 64 6f 75 62 6c 65 20 E(4).. double
09c0: 63 61 72 64 73 5f 5b 5d 20 3d 20 7b 31 30 2c 20 cards_[] = {10,
09d0: 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 10, 10, 10, 10,
09e0: 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 10, 10, 10, 10,
09f0: 31 30 2c 20 0d 0a 31 30 2c 20 31 30 2c 20 31 30 10, ..10, 10, 10
0a00: 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 , 10, 10, 10, 10
0a10: 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 0d 0a , 10, 10, 10, ..
0a20: 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 10, 10, 10, 10,
0a30: 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 10, 10, 10, 10,
0a40: 31 30 2c 20 31 30 2c 20 0d 0a 31 30 2c 20 31 30 10, 10, ..10, 10
0a50: 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 , 10, 10, 10, 10
0a60: 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 , 10, 10, 10, 10
0a70: 2c 20 0d 0a 31 30 2c 20 31 30 2c 20 31 30 2c 20 , ..10, 10, 10,
0a80: 31 30 2c 20 31 30 2c 20 31 30 2c 20 31 30 2c 20 10, 10, 10, 10,
0a90: 31 30 2c 20 31 30 2c 20 31 30 7d 3b 0d 0a 20 20 10, 10, 10};..
0aa0: 20 20 20 76 65 63 74 6f 72 20 3c 64 6f 75 62 6c vector <doubl
0ab0: 65 3e 20 63 61 72 64 73 28 63 61 72 64 73 5f 2c e> cards(cards_,
0ac0: 20 63 61 72 64 73 5f 2b 73 69 7a 65 6f 66 28 63 cards_+sizeof(c
0ad0: 61 72 64 73 5f 29 2f 73 69 7a 65 6f 66 28 2a 63 ards_)/sizeof(*c
0ae0: 61 72 64 73 5f 29 29 3b 20 0d 0a 20 20 20 64 6f ards_)); .. do
0af0: 75 62 6c 65 20 5f 20 3d 20 31 2e 30 45 35 30 3b uble _ = 1.0E50;
0b00: 20 0d 0a 45 4e 44 0d 0a 0d 0a 7d 0d 0a 2f 2f 20 ..END....}..//
0b10: 45 4e 44 20 43 55 54 20 48 45 52 45 0d 0a END CUT HERE..