Hex Artifact Content
Not logged in

Artifact 08c08afc02a9f35f486ac9e8220e4ba003255885:


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 57 69 6e 74  P;....class Wint
01a0: 65 72 41 6e 64 50 72 65 73 65 6e 74 73 20 7b 20  erAndPresents { 
01b0: 70 75 62 6c 69 63 3a 0d 0a 09 6c 6f 6e 67 20 6c  public:...long l
01c0: 6f 6e 67 20 67 65 74 4e 75 6d 62 65 72 28 76 65  ong getNumber(ve
01d0: 63 74 6f 72 20 3c 69 6e 74 3e 20 61 70 70 6c 65  ctor <int> apple
01e0: 2c 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 6f  , vector <int> o
01f0: 72 61 6e 67 65 29 0d 0a 09 7b 0d 0a 09 09 63 6f  range)...{....co
0200: 6e 73 74 20 69 6e 74 20 4e 20 3d 20 61 70 70 6c  nst int N = appl
0210: 65 2e 73 69 7a 65 28 29 3b 0d 0a 09 09 69 6e 74  e.size();....int
0220: 20 58 6d 61 78 20 3d 20 30 78 33 66 66 66 66 66   Xmax = 0x3fffff
0230: 66 66 3b 0d 0a 09 09 66 6f 72 28 69 6e 74 20 69  ff;....for(int i
0240: 3d 30 3b 20 69 3c 4e 3b 20 2b 2b 69 29 0d 0a 09  =0; i<N; ++i)...
0250: 09 09 58 6d 61 78 20 3d 20 6d 69 6e 28 58 6d 61  ..Xmax = min(Xma
0260: 78 2c 20 61 70 70 6c 65 5b 69 5d 2b 6f 72 61 6e  x, apple[i]+oran
0270: 67 65 5b 69 5d 29 3b 0d 0a 0d 0a 09 09 4c 4c 20  ge[i]);......LL 
0280: 74 6f 74 61 6c 20 3d 20 30 3b 0d 0a 09 09 66 6f  total = 0;....fo
0290: 72 28 69 6e 74 20 58 3d 31 3b 20 58 3c 3d 58 6d  r(int X=1; X<=Xm
02a0: 61 78 3b 20 2b 2b 58 29 20 7b 0d 0a 09 09 09 69  ax; ++X) {.....i
02b0: 6e 74 20 61 6d 3d 30 2c 20 61 4d 3d 30 3b 0d 0a  nt am=0, aM=0;..
02c0: 09 09 09 66 6f 72 28 69 6e 74 20 69 3d 30 3b 20  ...for(int i=0; 
02d0: 69 3c 4e 3b 20 2b 2b 69 29 20 7b 0d 0a 09 09 09  i<N; ++i) {.....
02e0: 09 61 6d 20 2b 3d 20 28 58 3c 3d 6f 72 61 6e 67  .am += (X<=orang
02f0: 65 5b 69 5d 20 3f 20 30 20 3a 20 58 2d 6f 72 61  e[i] ? 0 : X-ora
0300: 6e 67 65 5b 69 5d 29 3b 0d 0a 09 09 09 09 61 4d  nge[i]);......aM
0310: 20 2b 3d 20 28 58 3c 3d 61 70 70 6c 65 5b 69 5d   += (X<=apple[i]
0320: 20 3f 20 58 20 3a 20 61 70 70 6c 65 5b 69 5d 29   ? X : apple[i])
0330: 3b 0d 0a 09 09 09 7d 0d 0a 09 09 09 74 6f 74 61  ;.....}.....tota
0340: 6c 20 2b 3d 20 28 61 4d 2d 61 6d 2b 31 29 3b 0d  l += (aM-am+1);.
0350: 0a 09 09 7d 0d 0a 09 09 72 65 74 75 72 6e 20 74  ...}....return t
0360: 6f 74 61 6c 3b 0d 0a 09 7d 0d 0a 7d 3b 0d 0a 0d  otal;...}..};...
0370: 0a 2f 2f 20 42 45 47 49 4e 20 43 55 54 20 48 45  .// BEGIN CUT HE
0380: 52 45 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 63 74  RE..#include <ct
0390: 69 6d 65 3e 0d 0a 64 6f 75 62 6c 65 20 73 74 61  ime>..double sta
03a0: 72 74 5f 74 69 6d 65 3b 20 73 74 72 69 6e 67 20  rt_time; string 
03b0: 74 69 6d 65 72 28 29 0d 0a 20 7b 20 6f 73 74 72  timer().. { ostr
03c0: 69 6e 67 73 74 72 65 61 6d 20 6f 73 3b 20 6f 73  ingstream os; os
03d0: 20 3c 3c 20 22 20 28 22 20 3c 3c 20 69 6e 74 28   << " (" << int(
03e0: 28 63 6c 6f 63 6b 28 29 2d 73 74 61 72 74 5f 74  (clock()-start_t
03f0: 69 6d 65 29 2f 43 4c 4f 43 4b 53 5f 50 45 52 5f  ime)/CLOCKS_PER_
0400: 53 45 43 2a 31 30 30 30 29 20 3c 3c 20 22 20 6d  SEC*1000) << " m
0410: 73 65 63 29 22 3b 20 72 65 74 75 72 6e 20 6f 73  sec)"; return os
0420: 2e 73 74 72 28 29 3b 20 7d 0d 0a 74 65 6d 70 6c  .str(); }..templ
0430: 61 74 65 3c 74 79 70 65 6e 61 6d 65 20 54 3e 20  ate<typename T> 
0440: 6f 73 74 72 65 61 6d 26 20 6f 70 65 72 61 74 6f  ostream& operato
0450: 72 3c 3c 28 6f 73 74 72 65 61 6d 26 20 6f 73 2c  r<<(ostream& os,
0460: 20 63 6f 6e 73 74 20 76 65 63 74 6f 72 3c 54 3e   const vector<T>
0470: 26 20 76 29 0d 0a 20 7b 20 6f 73 20 3c 3c 20 22  & v).. { os << "
0480: 7b 20 22 3b 0d 0a 20 20 20 66 6f 72 28 74 79 70  { ";..   for(typ
0490: 65 6e 61 6d 65 20 76 65 63 74 6f 72 3c 54 3e 3a  ename vector<T>:
04a0: 3a 63 6f 6e 73 74 5f 69 74 65 72 61 74 6f 72 20  :const_iterator 
04b0: 69 74 3d 76 2e 62 65 67 69 6e 28 29 3b 20 69 74  it=v.begin(); it
04c0: 21 3d 76 2e 65 6e 64 28 29 3b 20 2b 2b 69 74 29  !=v.end(); ++it)
04d0: 0d 0a 20 20 20 6f 73 20 3c 3c 20 27 5c 22 27 20  ..   os << '\"' 
04e0: 3c 3c 20 2a 69 74 20 3c 3c 20 27 5c 22 27 20 3c  << *it << '\"' <
04f0: 3c 20 28 69 74 2b 31 3d 3d 76 2e 65 6e 64 28 29  < (it+1==v.end()
0500: 20 3f 20 22 22 20 3a 20 22 2c 20 22 29 3b 20 6f   ? "" : ", "); o
0510: 73 20 3c 3c 20 22 20 7d 22 3b 20 72 65 74 75 72  s << " }"; retur
0520: 6e 20 6f 73 3b 20 7d 0d 0a 76 6f 69 64 20 76 65  n os; }..void ve
0530: 72 69 66 79 5f 63 61 73 65 28 63 6f 6e 73 74 20  rify_case(const 
0540: 6c 6f 6e 67 20 6c 6f 6e 67 26 20 45 78 70 65 63  long long& Expec
0550: 74 65 64 2c 20 63 6f 6e 73 74 20 6c 6f 6e 67 20  ted, const long 
0560: 6c 6f 6e 67 26 20 52 65 63 65 69 76 65 64 29 20  long& Received) 
0570: 7b 0d 0a 20 62 6f 6f 6c 20 6f 6b 20 3d 20 28 45  {.. bool ok = (E
0580: 78 70 65 63 74 65 64 20 3d 3d 20 52 65 63 65 69  xpected == Recei
0590: 76 65 64 29 3b 0d 0a 20 69 66 28 6f 6b 29 20 63  ved);.. if(ok) c
05a0: 65 72 72 20 3c 3c 20 22 50 41 53 53 45 44 22 20  err << "PASSED" 
05b0: 3c 3c 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e  << timer() << en
05c0: 64 6c 3b 20 20 65 6c 73 65 20 7b 20 63 65 72 72  dl;  else { cerr
05d0: 20 3c 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c 20   << "FAILED" << 
05e0: 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c 3b  timer() << endl;
05f0: 0d 0a 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f 3a  .. cerr << "\to:
0600: 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65 64   \"" << Expected
0610: 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 6c   << '\"' << endl
0620: 20 3c 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c 3c   << "\tx: \"" <<
0630: 20 52 65 63 65 69 76 65 64 20 3c 3c 20 27 5c 22   Received << '\"
0640: 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d 0a  ' << endl; } }..
0650: 23 64 65 66 69 6e 65 20 43 41 53 45 28 4e 29 20  #define CASE(N) 
0660: 7b 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20 43  {cerr << "Test C
0670: 61 73 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20 22  ase #" << N << "
0680: 2e 2e 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20 73  ..." << flush; s
0690: 74 61 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b 28  tart_time=clock(
06a0: 29 3b 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44 09  );..#define END.
06b0: 20 76 65 72 69 66 79 5f 63 61 73 65 28 5f 2c 20   verify_case(_, 
06c0: 57 69 6e 74 65 72 41 6e 64 50 72 65 73 65 6e 74  WinterAndPresent
06d0: 73 28 29 2e 67 65 74 4e 75 6d 62 65 72 28 61 70  s().getNumber(ap
06e0: 70 6c 65 2c 20 6f 72 61 6e 67 65 29 29 3b 7d 0d  ple, orange));}.
06f0: 0a 69 6e 74 20 6d 61 69 6e 28 29 7b 0d 0a 0d 0a  .int main(){....
0700: 43 41 53 45 28 30 29 0d 0a 09 69 6e 74 20 61 70  CASE(0)...int ap
0710: 70 6c 65 5f 5b 5d 20 3d 20 7b 31 7d 3b 0d 0a 09  ple_[] = {1};...
0720: 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 61    vector <int> a
0730: 70 70 6c 65 28 61 70 70 6c 65 5f 2c 20 61 70 70  pple(apple_, app
0740: 6c 65 5f 2b 73 69 7a 65 6f 66 28 61 70 70 6c 65  le_+sizeof(apple
0750: 5f 29 2f 73 69 7a 65 6f 66 28 2a 61 70 70 6c 65  _)/sizeof(*apple
0760: 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 6f 72 61 6e  _)); ...int oran
0770: 67 65 5f 5b 5d 20 3d 20 7b 31 7d 3b 0d 0a 09 20  ge_[] = {1};... 
0780: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 6f 72   vector <int> or
0790: 61 6e 67 65 28 6f 72 61 6e 67 65 5f 2c 20 6f 72  ange(orange_, or
07a0: 61 6e 67 65 5f 2b 73 69 7a 65 6f 66 28 6f 72 61  ange_+sizeof(ora
07b0: 6e 67 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 6f 72  nge_)/sizeof(*or
07c0: 61 6e 67 65 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67  ange_)); ...long
07d0: 20 6c 6f 6e 67 20 5f 20 3d 20 33 4c 4c 3b 20 0d   long _ = 3LL; .
07e0: 0a 45 4e 44 0d 0a 43 41 53 45 28 31 29 0d 0a 09  .END..CASE(1)...
07f0: 69 6e 74 20 61 70 70 6c 65 5f 5b 5d 20 3d 20 7b  int apple_[] = {
0800: 31 2c 20 32 2c 20 30 2c 20 33 7d 3b 0d 0a 09 20  1, 2, 0, 3};... 
0810: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 61 70   vector <int> ap
0820: 70 6c 65 28 61 70 70 6c 65 5f 2c 20 61 70 70 6c  ple(apple_, appl
0830: 65 5f 2b 73 69 7a 65 6f 66 28 61 70 70 6c 65 5f  e_+sizeof(apple_
0840: 29 2f 73 69 7a 65 6f 66 28 2a 61 70 70 6c 65 5f  )/sizeof(*apple_
0850: 29 29 3b 20 0d 0a 09 69 6e 74 20 6f 72 61 6e 67  )); ...int orang
0860: 65 5f 5b 5d 20 3d 20 7b 34 2c 20 35 2c 20 30 2c  e_[] = {4, 5, 0,
0870: 20 36 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20   6};...  vector 
0880: 3c 69 6e 74 3e 20 6f 72 61 6e 67 65 28 6f 72 61  <int> orange(ora
0890: 6e 67 65 5f 2c 20 6f 72 61 6e 67 65 5f 2b 73 69  nge_, orange_+si
08a0: 7a 65 6f 66 28 6f 72 61 6e 67 65 5f 29 2f 73 69  zeof(orange_)/si
08b0: 7a 65 6f 66 28 2a 6f 72 61 6e 67 65 5f 29 29 3b  zeof(*orange_));
08c0: 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20   ...long long _ 
08d0: 3d 20 30 4c 4c 3b 20 0d 0a 45 4e 44 0d 0a 43 41  = 0LL; ..END..CA
08e0: 53 45 28 32 29 0d 0a 09 69 6e 74 20 61 70 70 6c  SE(2)...int appl
08f0: 65 5f 5b 5d 20 3d 20 7b 32 2c 20 32 2c 20 32 7d  e_[] = {2, 2, 2}
0900: 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e  ;...  vector <in
0910: 74 3e 20 61 70 70 6c 65 28 61 70 70 6c 65 5f 2c  t> apple(apple_,
0920: 20 61 70 70 6c 65 5f 2b 73 69 7a 65 6f 66 28 61   apple_+sizeof(a
0930: 70 70 6c 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 61  pple_)/sizeof(*a
0940: 70 70 6c 65 5f 29 29 3b 20 0d 0a 09 69 6e 74 20  pple_)); ...int 
0950: 6f 72 61 6e 67 65 5f 5b 5d 20 3d 20 7b 32 2c 20  orange_[] = {2, 
0960: 32 2c 20 32 7d 3b 0d 0a 09 20 20 76 65 63 74 6f  2, 2};...  vecto
0970: 72 20 3c 69 6e 74 3e 20 6f 72 61 6e 67 65 28 6f  r <int> orange(o
0980: 72 61 6e 67 65 5f 2c 20 6f 72 61 6e 67 65 5f 2b  range_, orange_+
0990: 73 69 7a 65 6f 66 28 6f 72 61 6e 67 65 5f 29 2f  sizeof(orange_)/
09a0: 73 69 7a 65 6f 66 28 2a 6f 72 61 6e 67 65 5f 29  sizeof(*orange_)
09b0: 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20  ); ...long long 
09c0: 5f 20 3d 20 31 36 4c 4c 3b 20 0d 0a 45 4e 44 0d  _ = 16LL; ..END.
09d0: 0a 43 41 53 45 28 33 29 0d 0a 09 69 6e 74 20 61  .CASE(3)...int a
09e0: 70 70 6c 65 5f 5b 5d 20 3d 20 7b 37 2c 20 34 2c  pple_[] = {7, 4,
09f0: 20 35 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20   5};...  vector 
0a00: 3c 69 6e 74 3e 20 61 70 70 6c 65 28 61 70 70 6c  <int> apple(appl
0a10: 65 5f 2c 20 61 70 70 6c 65 5f 2b 73 69 7a 65 6f  e_, apple_+sizeo
0a20: 66 28 61 70 70 6c 65 5f 29 2f 73 69 7a 65 6f 66  f(apple_)/sizeof
0a30: 28 2a 61 70 70 6c 65 5f 29 29 3b 20 0d 0a 09 69  (*apple_)); ...i
0a40: 6e 74 20 6f 72 61 6e 67 65 5f 5b 5d 20 3d 20 7b  nt orange_[] = {
0a50: 31 2c 20 31 30 2c 20 32 7d 3b 0d 0a 09 20 20 76  1, 10, 2};...  v
0a60: 65 63 74 6f 72 20 3c 69 6e 74 3e 20 6f 72 61 6e  ector <int> oran
0a70: 67 65 28 6f 72 61 6e 67 65 5f 2c 20 6f 72 61 6e  ge(orange_, oran
0a80: 67 65 5f 2b 73 69 7a 65 6f 66 28 6f 72 61 6e 67  ge_+sizeof(orang
0a90: 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 6f 72 61 6e  e_)/sizeof(*oran
0aa0: 67 65 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c  ge_)); ...long l
0ab0: 6f 6e 67 20 5f 20 3d 20 34 36 4c 4c 3b 20 0d 0a  ong _ = 46LL; ..
0ac0: 45 4e 44 0d 0a 43 41 53 45 28 34 29 0d 0a 09 69  END..CASE(4)...i
0ad0: 6e 74 20 61 70 70 6c 65 5f 5b 5d 20 3d 20 7b 31  nt apple_[] = {1
0ae0: 30 30 30 30 30 30 7d 3b 0d 0a 09 20 20 76 65 63  000000};...  vec
0af0: 74 6f 72 20 3c 69 6e 74 3e 20 61 70 70 6c 65 28  tor <int> apple(
0b00: 61 70 70 6c 65 5f 2c 20 61 70 70 6c 65 5f 2b 73  apple_, apple_+s
0b10: 69 7a 65 6f 66 28 61 70 70 6c 65 5f 29 2f 73 69  izeof(apple_)/si
0b20: 7a 65 6f 66 28 2a 61 70 70 6c 65 5f 29 29 3b 20  zeof(*apple_)); 
0b30: 0d 0a 09 69 6e 74 20 6f 72 61 6e 67 65 5f 5b 5d  ...int orange_[]
0b40: 20 3d 20 7b 31 30 30 30 30 30 30 7d 3b 0d 0a 09   = {1000000};...
0b50: 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 6f    vector <int> o
0b60: 72 61 6e 67 65 28 6f 72 61 6e 67 65 5f 2c 20 6f  range(orange_, o
0b70: 72 61 6e 67 65 5f 2b 73 69 7a 65 6f 66 28 6f 72  range_+sizeof(or
0b80: 61 6e 67 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 6f  ange_)/sizeof(*o
0b90: 72 61 6e 67 65 5f 29 29 3b 20 0d 0a 09 6c 6f 6e  range_)); ...lon
0ba0: 67 20 6c 6f 6e 67 20 5f 20 3d 20 31 30 30 30 30  g long _ = 10000
0bb0: 30 32 30 30 30 30 30 30 4c 4c 3b 20 0d 0a 45 4e  02000000LL; ..EN
0bc0: 44 0d 0a 43 41 53 45 28 35 29 0d 0a 09 69 6e 74  D..CASE(5)...int
0bd0: 20 61 70 70 6c 65 5f 5b 5d 20 3d 20 7b 31 30 30   apple_[] = {100
0be0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0bf0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c00: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c10: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c20: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c30: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c40: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c50: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c60: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c70: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c80: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0c90: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0ca0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0cb0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0cc0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0cd0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0ce0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0cf0: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d00: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d10: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d20: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d30: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d40: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d50: 30 30 30 30 2c 31 30 30 30 30 30 30 2c 31 30 30  0000,1000000,100
0d60: 30 30 30 30 2c 31 30 30 30 30 30 30 7d 3b 0d 0a  0000,1000000};..
0d70: 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20  .  vector <int> 
0d80: 61 70 70 6c 65 28 61 70 70 6c 65 5f 2c 20 61 70  apple(apple_, ap
0d90: 70 6c 65 5f 2b 73 69 7a 65 6f 66 28 61 70 70 6c  ple_+sizeof(appl
0da0: 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 61 70 70 6c  e_)/sizeof(*appl
0db0: 65 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 6f 72 61  e_)); ...int ora
0dc0: 6e 67 65 5f 5b 5d 20 3d 20 7b 31 30 30 30 30 30  nge_[] = {100000
0dd0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0de0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0df0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e00: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e10: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e20: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e30: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e40: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e50: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e60: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e70: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e80: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0e90: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0ea0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0eb0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0ec0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0ed0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0ee0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0ef0: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f00: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f10: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f20: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f30: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f40: 30 2c 31 30 30 30 30 30 30 2c 31 30 30 30 30 30  0,1000000,100000
0f50: 30 2c 31 30 30 30 30 30 30 7d 3b 0d 0a 09 20 20  0,1000000};...  
0f60: 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 6f 72 61  vector <int> ora
0f70: 6e 67 65 28 6f 72 61 6e 67 65 5f 2c 20 6f 72 61  nge(orange_, ora
0f80: 6e 67 65 5f 2b 73 69 7a 65 6f 66 28 6f 72 61 6e  nge_+sizeof(oran
0f90: 67 65 5f 29 2f 73 69 7a 65 6f 66 28 2a 6f 72 61  ge_)/sizeof(*ora
0fa0: 6e 67 65 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20  nge_)); ...long 
0fb0: 6c 6f 6e 67 20 5f 20 3d 20 2d 31 4c 4c 3b 20 0d  long _ = -1LL; .
0fc0: 0a 45 4e 44 0d 0a 2f 2a 0d 0a 43 41 53 45 28 36  .END../*..CASE(6
0fd0: 29 0d 0a 09 69 6e 74 20 61 70 70 6c 65 5f 5b 5d  )...int apple_[]
0fe0: 20 3d 20 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20   = ;...  vector 
0ff0: 3c 69 6e 74 3e 20 61 70 70 6c 65 28 61 70 70 6c  <int> apple(appl
1000: 65 5f 2c 20 61 70 70 6c 65 5f 2b 73 69 7a 65 6f  e_, apple_+sizeo
1010: 66 28 61 70 70 6c 65 5f 29 2f 73 69 7a 65 6f 66  f(apple_)/sizeof
1020: 28 2a 61 70 70 6c 65 5f 29 29 3b 20 0d 0a 09 69  (*apple_)); ...i
1030: 6e 74 20 6f 72 61 6e 67 65 5f 5b 5d 20 3d 20 3b  nt orange_[] = ;
1040: 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74  ...  vector <int
1050: 3e 20 6f 72 61 6e 67 65 28 6f 72 61 6e 67 65 5f  > orange(orange_
1060: 2c 20 6f 72 61 6e 67 65 5f 2b 73 69 7a 65 6f 66  , orange_+sizeof
1070: 28 6f 72 61 6e 67 65 5f 29 2f 73 69 7a 65 6f 66  (orange_)/sizeof
1080: 28 2a 6f 72 61 6e 67 65 5f 29 29 3b 20 0d 0a 09  (*orange_)); ...
1090: 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 4c 4c  long long _ = LL
10a0: 3b 20 0d 0a 45 4e 44 0d 0a 2a 2f 0d 0a 7d 0d 0a  ; ..END..*/..}..
10b0: 2f 2f 20 45 4e 44 20 43 55 54 20 48 45 52 45 0d  // END CUT HERE.
10c0: 0a                                               .