Hex Artifact Content
Not logged in

Artifact 5df1a0f8d5879ebef2bd7a6133c0b74268f266bf:


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 50 72 6f 62 6c 65 6d 73 54 6f 53 6f 6c 76 65   ProblemsToSolve
0150: 0d 0a 7b 0d 0a 70 75 62 6c 69 63 3a 0d 0a 09 69  ..{..public:...i
0160: 6e 74 20 6d 69 6e 4e 75 6d 62 65 72 28 76 65 63  nt minNumber(vec
0170: 74 6f 72 20 3c 69 6e 74 3e 20 70 72 65 2c 20 69  tor <int> pre, i
0180: 6e 74 20 76 61 72 69 65 74 79 29 20 0d 0a 09 7b  nt variety) ...{
0190: 0d 0a 09 09 69 6e 74 20 61 6e 73 20 3d 20 70 72  ....int ans = pr
01a0: 65 2e 73 69 7a 65 28 29 3b 0d 0a 09 09 66 6f 72  e.size();....for
01b0: 28 69 6e 74 20 69 3d 30 3b 20 69 3c 70 72 65 2e  (int i=0; i<pre.
01c0: 73 69 7a 65 28 29 3b 20 2b 2b 69 29 0d 0a 09 09  size(); ++i)....
01d0: 09 66 6f 72 28 69 6e 74 20 6a 3d 69 2b 31 3b 20  .for(int j=i+1; 
01e0: 6a 3c 70 72 65 2e 73 69 7a 65 28 29 3b 20 2b 2b  j<pre.size(); ++
01f0: 6a 29 0d 0a 09 09 09 09 69 66 28 20 61 62 73 28  j)......if( abs(
0200: 70 72 65 5b 69 5d 2d 70 72 65 5b 6a 5d 29 20 3e  pre[i]-pre[j]) >
0210: 3d 20 76 61 72 69 65 74 79 20 29 0d 0a 09 09 09  = variety ).....
0220: 09 09 61 6e 73 20 3d 20 6d 69 6e 28 61 6e 73 2c  ..ans = min(ans,
0230: 20 73 6f 6c 76 65 28 6d 69 6e 28 69 2c 6a 29 2c   solve(min(i,j),
0240: 20 6d 61 78 28 69 2c 6a 29 29 29 3b 0d 0a 09 09   max(i,j)));....
0250: 72 65 74 75 72 6e 20 61 6e 73 3b 0d 0a 09 7d 0d  return ans;...}.
0260: 0a 0d 0a 09 69 6e 74 20 73 6f 6c 76 65 28 69 6e  ....int solve(in
0270: 74 20 53 2c 20 69 6e 74 20 44 29 0d 0a 09 7b 0d  t S, int D)...{.
0280: 0a 09 09 72 65 74 75 72 6e 20 28 53 2b 31 29 2f  ...return (S+1)/
0290: 32 2b 31 20 2b 20 28 44 2d 53 2b 31 29 2f 32 3b  2+1 + (D-S+1)/2;
02a0: 0d 0a 09 7d 0d 0a 0d 0a 2f 2f 20 42 45 47 49 4e  ...}....// BEGIN
02b0: 20 43 55 54 20 48 45 52 45 0d 0a 09 70 75 62 6c   CUT HERE...publ
02c0: 69 63 3a 0d 0a 09 76 6f 69 64 20 72 75 6e 5f 74  ic:...void run_t
02d0: 65 73 74 28 69 6e 74 20 43 61 73 65 29 20 7b 20  est(int Case) { 
02e0: 69 66 20 28 28 43 61 73 65 20 3d 3d 20 2d 31 29  if ((Case == -1)
02f0: 20 7c 7c 20 28 43 61 73 65 20 3d 3d 20 30 29 29   || (Case == 0))
0300: 20 74 65 73 74 5f 63 61 73 65 5f 30 28 29 3b 20   test_case_0(); 
0310: 69 66 20 28 28 43 61 73 65 20 3d 3d 20 2d 31 29  if ((Case == -1)
0320: 20 7c 7c 20 28 43 61 73 65 20 3d 3d 20 31 29 29   || (Case == 1))
0330: 20 74 65 73 74 5f 63 61 73 65 5f 31 28 29 3b 20   test_case_1(); 
0340: 69 66 20 28 28 43 61 73 65 20 3d 3d 20 2d 31 29  if ((Case == -1)
0350: 20 7c 7c 20 28 43 61 73 65 20 3d 3d 20 32 29 29   || (Case == 2))
0360: 20 74 65 73 74 5f 63 61 73 65 5f 32 28 29 3b 20   test_case_2(); 
0370: 69 66 20 28 28 43 61 73 65 20 3d 3d 20 2d 31 29  if ((Case == -1)
0380: 20 7c 7c 20 28 43 61 73 65 20 3d 3d 20 33 29 29   || (Case == 3))
0390: 20 74 65 73 74 5f 63 61 73 65 5f 33 28 29 3b 20   test_case_3(); 
03a0: 69 66 20 28 28 43 61 73 65 20 3d 3d 20 2d 31 29  if ((Case == -1)
03b0: 20 7c 7c 20 28 43 61 73 65 20 3d 3d 20 34 29 29   || (Case == 4))
03c0: 20 74 65 73 74 5f 63 61 73 65 5f 34 28 29 3b 20   test_case_4(); 
03d0: 7d 0d 0a 09 70 72 69 76 61 74 65 3a 0d 0a 09 74  }...private:...t
03e0: 65 6d 70 6c 61 74 65 20 3c 74 79 70 65 6e 61 6d  emplate <typenam
03f0: 65 20 54 3e 20 73 74 72 69 6e 67 20 70 72 69 6e  e T> string prin
0400: 74 5f 61 72 72 61 79 28 63 6f 6e 73 74 20 76 65  t_array(const ve
0410: 63 74 6f 72 3c 54 3e 20 26 56 29 20 7b 20 6f 73  ctor<T> &V) { os
0420: 74 72 69 6e 67 73 74 72 65 61 6d 20 6f 73 3b 20  tringstream os; 
0430: 6f 73 20 3c 3c 20 22 7b 20 22 3b 20 66 6f 72 20  os << "{ "; for 
0440: 28 74 79 70 65 6e 61 6d 65 20 76 65 63 74 6f 72  (typename vector
0450: 3c 54 3e 3a 3a 63 6f 6e 73 74 5f 69 74 65 72 61  <T>::const_itera
0460: 74 6f 72 20 69 74 65 72 20 3d 20 56 2e 62 65 67  tor iter = V.beg
0470: 69 6e 28 29 3b 20 69 74 65 72 20 21 3d 20 56 2e  in(); iter != V.
0480: 65 6e 64 28 29 3b 20 2b 2b 69 74 65 72 29 20 6f  end(); ++iter) o
0490: 73 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 2a 69 74  s << '\"' << *it
04a0: 65 72 20 3c 3c 20 22 5c 22 2c 22 3b 20 6f 73 20  er << "\","; os 
04b0: 3c 3c 20 22 20 7d 22 3b 20 72 65 74 75 72 6e 20  << " }"; return 
04c0: 6f 73 2e 73 74 72 28 29 3b 20 7d 0d 0a 09 76 6f  os.str(); }...vo
04d0: 69 64 20 76 65 72 69 66 79 5f 63 61 73 65 28 69  id verify_case(i
04e0: 6e 74 20 43 61 73 65 2c 20 63 6f 6e 73 74 20 69  nt Case, const i
04f0: 6e 74 20 26 45 78 70 65 63 74 65 64 2c 20 63 6f  nt &Expected, co
0500: 6e 73 74 20 69 6e 74 20 26 52 65 63 65 69 76 65  nst int &Receive
0510: 64 29 20 7b 20 63 65 72 72 20 3c 3c 20 22 54 65  d) { cerr << "Te
0520: 73 74 20 43 61 73 65 20 23 22 20 3c 3c 20 43 61  st Case #" << Ca
0530: 73 65 20 3c 3c 20 22 2e 2e 2e 22 3b 20 69 66 20  se << "..."; if 
0540: 28 45 78 70 65 63 74 65 64 20 3d 3d 20 52 65 63  (Expected == Rec
0550: 65 69 76 65 64 29 20 63 65 72 72 20 3c 3c 20 22  eived) cerr << "
0560: 50 41 53 53 45 44 22 20 3c 3c 20 65 6e 64 6c 3b  PASSED" << endl;
0570: 20 65 6c 73 65 20 7b 20 63 65 72 72 20 3c 3c 20   else { cerr << 
0580: 22 46 41 49 4c 45 44 22 20 3c 3c 20 65 6e 64 6c  "FAILED" << endl
0590: 3b 20 63 65 72 72 20 3c 3c 20 22 5c 74 45 78 70  ; cerr << "\tExp
05a0: 65 63 74 65 64 3a 20 5c 22 22 20 3c 3c 20 45 78  ected: \"" << Ex
05b0: 70 65 63 74 65 64 20 3c 3c 20 27 5c 22 27 20 3c  pected << '\"' <
05c0: 3c 20 65 6e 64 6c 3b 20 63 65 72 72 20 3c 3c 20  < endl; cerr << 
05d0: 22 5c 74 52 65 63 65 69 76 65 64 3a 20 5c 22 22  "\tReceived: \""
05e0: 20 3c 3c 20 52 65 63 65 69 76 65 64 20 3c 3c 20   << Received << 
05f0: 27 5c 22 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20  '\"' << endl; } 
0600: 7d 0d 0a 09 76 6f 69 64 20 74 65 73 74 5f 63 61  }...void test_ca
0610: 73 65 5f 30 28 29 20 7b 20 69 6e 74 20 41 72 72  se_0() { int Arr
0620: 30 5b 5d 20 3d 20 7b 31 2c 20 32 2c 20 33 7d 3b  0[] = {1, 2, 3};
0630: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 41 72   vector <int> Ar
0640: 67 30 28 41 72 72 30 2c 20 41 72 72 30 20 2b 20  g0(Arr0, Arr0 + 
0650: 28 73 69 7a 65 6f 66 28 41 72 72 30 29 20 2f 20  (sizeof(Arr0) / 
0660: 73 69 7a 65 6f 66 28 41 72 72 30 5b 30 5d 29 29  sizeof(Arr0[0]))
0670: 29 3b 20 69 6e 74 20 41 72 67 31 20 3d 20 32 3b  ); int Arg1 = 2;
0680: 20 69 6e 74 20 41 72 67 32 20 3d 20 32 3b 20 76   int Arg2 = 2; v
0690: 65 72 69 66 79 5f 63 61 73 65 28 30 2c 20 41 72  erify_case(0, Ar
06a0: 67 32 2c 20 6d 69 6e 4e 75 6d 62 65 72 28 41 72  g2, minNumber(Ar
06b0: 67 30 2c 20 41 72 67 31 29 29 3b 20 7d 0d 0a 09  g0, Arg1)); }...
06c0: 76 6f 69 64 20 74 65 73 74 5f 63 61 73 65 5f 31  void test_case_1
06d0: 28 29 20 7b 20 69 6e 74 20 41 72 72 30 5b 5d 20  () { int Arr0[] 
06e0: 3d 20 7b 31 2c 20 32 2c 20 33 2c 20 34 2c 20 35  = {1, 2, 3, 4, 5
06f0: 7d 3b 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20  }; vector <int> 
0700: 41 72 67 30 28 41 72 72 30 2c 20 41 72 72 30 20  Arg0(Arr0, Arr0 
0710: 2b 20 28 73 69 7a 65 6f 66 28 41 72 72 30 29 20  + (sizeof(Arr0) 
0720: 2f 20 73 69 7a 65 6f 66 28 41 72 72 30 5b 30 5d  / sizeof(Arr0[0]
0730: 29 29 29 3b 20 69 6e 74 20 41 72 67 31 20 3d 20  ))); int Arg1 = 
0740: 34 3b 20 69 6e 74 20 41 72 67 32 20 3d 20 33 3b  4; int Arg2 = 3;
0750: 20 76 65 72 69 66 79 5f 63 61 73 65 28 31 2c 20   verify_case(1, 
0760: 41 72 67 32 2c 20 6d 69 6e 4e 75 6d 62 65 72 28  Arg2, minNumber(
0770: 41 72 67 30 2c 20 41 72 67 31 29 29 3b 20 7d 0d  Arg0, Arg1)); }.
0780: 0a 09 76 6f 69 64 20 74 65 73 74 5f 63 61 73 65  ..void test_case
0790: 5f 32 28 29 20 7b 20 69 6e 74 20 41 72 72 30 5b  _2() { int Arr0[
07a0: 5d 20 3d 20 7b 31 30 2c 20 31 2c 20 31 32 2c 20  ] = {10, 1, 12, 
07b0: 31 30 31 7d 3b 20 76 65 63 74 6f 72 20 3c 69 6e  101}; vector <in
07c0: 74 3e 20 41 72 67 30 28 41 72 72 30 2c 20 41 72  t> Arg0(Arr0, Ar
07d0: 72 30 20 2b 20 28 73 69 7a 65 6f 66 28 41 72 72  r0 + (sizeof(Arr
07e0: 30 29 20 2f 20 73 69 7a 65 6f 66 28 41 72 72 30  0) / sizeof(Arr0
07f0: 5b 30 5d 29 29 29 3b 20 69 6e 74 20 41 72 67 31  [0]))); int Arg1
0800: 20 3d 20 31 30 30 3b 20 69 6e 74 20 41 72 67 32   = 100; int Arg2
0810: 20 3d 20 33 3b 20 76 65 72 69 66 79 5f 63 61 73   = 3; verify_cas
0820: 65 28 32 2c 20 41 72 67 32 2c 20 6d 69 6e 4e 75  e(2, Arg2, minNu
0830: 6d 62 65 72 28 41 72 67 30 2c 20 41 72 67 31 29  mber(Arg0, Arg1)
0840: 29 3b 20 7d 0d 0a 09 76 6f 69 64 20 74 65 73 74  ); }...void test
0850: 5f 63 61 73 65 5f 33 28 29 20 7b 20 69 6e 74 20  _case_3() { int 
0860: 41 72 72 30 5b 5d 20 3d 20 7b 31 30 2c 20 31 7d  Arr0[] = {10, 1}
0870: 3b 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 41  ; vector <int> A
0880: 72 67 30 28 41 72 72 30 2c 20 41 72 72 30 20 2b  rg0(Arr0, Arr0 +
0890: 20 28 73 69 7a 65 6f 66 28 41 72 72 30 29 20 2f   (sizeof(Arr0) /
08a0: 20 73 69 7a 65 6f 66 28 41 72 72 30 5b 30 5d 29   sizeof(Arr0[0])
08b0: 29 29 3b 20 69 6e 74 20 41 72 67 31 20 3d 20 39  )); int Arg1 = 9
08c0: 3b 20 69 6e 74 20 41 72 67 32 20 3d 20 32 3b 20  ; int Arg2 = 2; 
08d0: 76 65 72 69 66 79 5f 63 61 73 65 28 33 2c 20 41  verify_case(3, A
08e0: 72 67 32 2c 20 6d 69 6e 4e 75 6d 62 65 72 28 41  rg2, minNumber(A
08f0: 72 67 30 2c 20 41 72 67 31 29 29 3b 20 7d 0d 0a  rg0, Arg1)); }..
0900: 09 76 6f 69 64 20 74 65 73 74 5f 63 61 73 65 5f  .void test_case_
0910: 34 28 29 20 7b 20 69 6e 74 20 41 72 72 30 5b 5d  4() { int Arr0[]
0920: 20 3d 20 7b 36 2c 20 32 2c 20 36 2c 20 32 2c 20   = {6, 2, 6, 2, 
0930: 36 2c 20 33 2c 20 33 2c 20 33 2c 20 37 7d 3b 20  6, 3, 3, 3, 7}; 
0940: 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 41 72 67  vector <int> Arg
0950: 30 28 41 72 72 30 2c 20 41 72 72 30 20 2b 20 28  0(Arr0, Arr0 + (
0960: 73 69 7a 65 6f 66 28 41 72 72 30 29 20 2f 20 73  sizeof(Arr0) / s
0970: 69 7a 65 6f 66 28 41 72 72 30 5b 30 5d 29 29 29  izeof(Arr0[0])))
0980: 3b 20 69 6e 74 20 41 72 67 31 20 3d 20 34 3b 20  ; int Arg1 = 4; 
0990: 69 6e 74 20 41 72 67 32 20 3d 20 32 3b 20 76 65  int Arg2 = 2; ve
09a0: 72 69 66 79 5f 63 61 73 65 28 34 2c 20 41 72 67  rify_case(4, Arg
09b0: 32 2c 20 6d 69 6e 4e 75 6d 62 65 72 28 41 72 67  2, minNumber(Arg
09c0: 30 2c 20 41 72 67 31 29 29 3b 20 7d 0d 0a 0d 0a  0, Arg1)); }....
09d0: 2f 2f 20 45 4e 44 20 43 55 54 20 48 45 52 45 0d  // END CUT HERE.
09e0: 0a 7d 3b 0d 0a 2f 2f 20 42 45 47 49 4e 20 43 55  .};..// BEGIN CU
09f0: 54 20 48 45 52 45 20 0d 0a 69 6e 74 20 6d 61 69  T HERE ..int mai
0a00: 6e 28 29 20 7b 20 50 72 6f 62 6c 65 6d 73 54 6f  n() { ProblemsTo
0a10: 53 6f 6c 76 65 28 29 2e 72 75 6e 5f 74 65 73 74  Solve().run_test
0a20: 28 2d 31 29 3b 20 7d 0d 0a 2f 2f 20 45 4e 44 20  (-1); }..// END 
0a30: 43 55 54 20 48 45 52 45 0d 0a                    CUT HERE..