Hex Artifact Content
Not logged in

Artifact 937144173b305ccc0e25e6a79efd4f4e1f8f8412:


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 51 75  CMP;....class Qu
01a0: 69 63 6b 53 6f 72 74 20 7b 20 70 75 62 6c 69 63  ickSort { public
01b0: 3a 0d 0a 09 64 6f 75 62 6c 65 20 67 65 74 45 76  :...double getEv
01c0: 61 6c 28 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20  al(vector <int> 
01d0: 4c 29 20 0d 0a 09 7b 0d 0a 09 09 69 6e 74 20 6d  L) ...{....int m
01e0: 20 3d 20 2a 6d 69 6e 5f 65 6c 65 6d 65 6e 74 28   = *min_element(
01f0: 4c 2e 62 65 67 69 6e 28 29 2c 20 4c 2e 65 6e 64  L.begin(), L.end
0200: 28 29 29 3b 0d 0a 09 09 69 6e 74 20 4d 20 3d 20  ());....int M = 
0210: 2a 6d 61 78 5f 65 6c 65 6d 65 6e 74 28 4c 2e 62  *max_element(L.b
0220: 65 67 69 6e 28 29 2c 20 4c 2e 65 6e 64 28 29 29  egin(), L.end())
0230: 3b 0d 0a 09 09 72 65 74 75 72 6e 20 72 65 63 28  ;....return rec(
0240: 4c 2c 20 6d 2c 20 4d 2b 31 29 3b 0d 0a 09 7d 0d  L, m, M+1);...}.
0250: 0a 09 6d 61 70 3c 70 61 69 72 3c 69 6e 74 2c 69  ..map<pair<int,i
0260: 6e 74 3e 2c 20 64 6f 75 62 6c 65 3e 20 6d 65 6d  nt>, double> mem
0270: 6f 3b 0d 0a 09 64 6f 75 62 6c 65 20 72 65 63 28  o;...double rec(
0280: 63 6f 6e 73 74 20 76 65 63 74 6f 72 3c 69 6e 74  const vector<int
0290: 3e 26 20 4c 2c 20 69 6e 74 20 6d 2c 20 69 6e 74  >& L, int m, int
02a0: 20 4d 29 0d 0a 09 7b 0d 0a 09 09 70 61 69 72 3c   M)...{....pair<
02b0: 69 6e 74 2c 69 6e 74 3e 20 6b 65 79 28 6d 2c 4d  int,int> key(m,M
02c0: 29 3b 0d 0a 09 09 69 66 28 6d 65 6d 6f 2e 63 6f  );....if(memo.co
02d0: 75 6e 74 28 6b 65 79 29 29 0d 0a 09 09 09 72 65  unt(key)).....re
02e0: 74 75 72 6e 20 6d 65 6d 6f 5b 6b 65 79 5d 3b 0d  turn memo[key];.
02f0: 0a 0d 0a 09 09 76 65 63 74 6f 72 3c 69 6e 74 3e  .....vector<int>
0300: 20 63 3b 0d 0a 09 09 66 6f 72 28 69 6e 74 20 69   c;....for(int i
0310: 3d 30 3b 20 69 3c 4c 2e 73 69 7a 65 28 29 3b 20  =0; i<L.size(); 
0320: 2b 2b 69 29 0d 0a 09 09 09 69 66 28 20 6d 3c 3d  ++i).....if( m<=
0330: 4c 5b 69 5d 20 26 26 20 4c 5b 69 5d 3c 4d 20 29  L[i] && L[i]<M )
0340: 0d 0a 09 09 09 09 63 2e 70 75 73 68 5f 62 61 63  ......c.push_bac
0350: 6b 28 4c 5b 69 5d 29 3b 0d 0a 0d 0a 09 09 69 66  k(L[i]);......if
0360: 28 20 63 2e 73 69 7a 65 28 29 20 3c 3d 20 31 20  ( c.size() <= 1 
0370: 29 0d 0a 09 09 09 72 65 74 75 72 6e 20 6d 65 6d  ).....return mem
0380: 6f 5b 6b 65 79 5d 20 3d 20 30 3b 0d 0a 0d 0a 09  o[key] = 0;.....
0390: 09 64 6f 75 62 6c 65 20 65 20 3d 20 30 3b 0d 0a  .double e = 0;..
03a0: 09 09 66 6f 72 28 69 6e 74 20 6b 3d 30 3b 20 6b  ..for(int k=0; k
03b0: 3c 63 2e 73 69 7a 65 28 29 3b 20 2b 2b 6b 29 0d  <c.size(); ++k).
03c0: 0a 09 09 7b 0d 0a 09 09 09 69 6e 74 20 70 20 3d  ...{.....int p =
03d0: 20 63 5b 6b 5d 3b 0d 0a 09 09 09 69 6e 74 20 63   c[k];.....int c
03e0: 6e 74 20 3d 20 30 3b 0d 0a 09 09 09 66 6f 72 28  nt = 0;.....for(
03f0: 69 6e 74 20 69 3d 30 3b 20 69 3c 6b 3b 20 2b 2b  int i=0; i<k; ++
0400: 69 29 0d 0a 09 09 09 09 69 66 28 20 63 5b 69 5d  i)......if( c[i]
0410: 20 3e 20 70 20 29 0d 0a 09 09 09 09 09 2b 2b 63   > p ).......++c
0420: 6e 74 3b 0d 0a 09 09 09 66 6f 72 28 69 6e 74 20  nt;.....for(int 
0430: 69 3d 6b 2b 31 3b 20 69 3c 63 2e 73 69 7a 65 28  i=k+1; i<c.size(
0440: 29 3b 20 2b 2b 69 29 0d 0a 09 09 09 09 69 66 28  ); ++i)......if(
0450: 20 70 20 3e 20 63 5b 69 5d 20 29 0d 0a 09 09 09   p > c[i] ).....
0460: 09 09 2b 2b 63 6e 74 3b 0d 0a 09 09 09 65 20 2b  ..++cnt;.....e +
0470: 3d 20 72 65 63 28 4c 2c 20 6d 2c 20 70 29 20 2b  = rec(L, m, p) +
0480: 20 72 65 63 28 4c 2c 20 70 2b 31 2c 20 4d 29 20   rec(L, p+1, M) 
0490: 2b 20 63 6e 74 3b 0d 0a 09 09 7d 0d 0a 0d 0a 09  + cnt;....}.....
04a0: 09 72 65 74 75 72 6e 20 6d 65 6d 6f 5b 6b 65 79  .return memo[key
04b0: 5d 20 3d 20 65 20 2f 20 63 2e 73 69 7a 65 28 29  ] = e / c.size()
04c0: 3b 0d 0a 09 7d 0d 0a 7d 3b 0d 0a 0d 0a 2f 2f 20  ;...}..};....// 
04d0: 42 45 47 49 4e 20 43 55 54 20 48 45 52 45 0d 0a  BEGIN CUT HERE..
04e0: 23 69 6e 63 6c 75 64 65 20 3c 63 74 69 6d 65 3e  #include <ctime>
04f0: 0d 0a 64 6f 75 62 6c 65 20 73 74 61 72 74 5f 74  ..double start_t
0500: 69 6d 65 3b 20 73 74 72 69 6e 67 20 74 69 6d 65  ime; string time
0510: 72 28 29 0d 0a 20 7b 20 6f 73 74 72 69 6e 67 73  r().. { ostrings
0520: 74 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c 3c 20  tream os; os << 
0530: 22 20 28 22 20 3c 3c 20 69 6e 74 28 28 63 6c 6f  " (" << int((clo
0540: 63 6b 28 29 2d 73 74 61 72 74 5f 74 69 6d 65 29  ck()-start_time)
0550: 2f 43 4c 4f 43 4b 53 5f 50 45 52 5f 53 45 43 2a  /CLOCKS_PER_SEC*
0560: 31 30 30 30 29 20 3c 3c 20 22 20 6d 73 65 63 29  1000) << " msec)
0570: 22 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 74 72  "; return os.str
0580: 28 29 3b 20 7d 0d 0a 74 65 6d 70 6c 61 74 65 3c  (); }..template<
0590: 74 79 70 65 6e 61 6d 65 20 54 3e 20 6f 73 74 72  typename T> ostr
05a0: 65 61 6d 26 20 6f 70 65 72 61 74 6f 72 3c 3c 28  eam& operator<<(
05b0: 6f 73 74 72 65 61 6d 26 20 6f 73 2c 20 63 6f 6e  ostream& os, con
05c0: 73 74 20 76 65 63 74 6f 72 3c 54 3e 26 20 76 29  st vector<T>& v)
05d0: 0d 0a 20 7b 20 6f 73 20 3c 3c 20 22 7b 20 22 3b  .. { os << "{ ";
05e0: 0d 0a 20 20 20 66 6f 72 28 74 79 70 65 6e 61 6d  ..   for(typenam
05f0: 65 20 76 65 63 74 6f 72 3c 54 3e 3a 3a 63 6f 6e  e vector<T>::con
0600: 73 74 5f 69 74 65 72 61 74 6f 72 20 69 74 3d 76  st_iterator it=v
0610: 2e 62 65 67 69 6e 28 29 3b 20 69 74 21 3d 76 2e  .begin(); it!=v.
0620: 65 6e 64 28 29 3b 20 2b 2b 69 74 29 0d 0a 20 20  end(); ++it)..  
0630: 20 6f 73 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 2a   os << '\"' << *
0640: 69 74 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 28 69  it << '\"' << (i
0650: 74 2b 31 3d 3d 76 2e 65 6e 64 28 29 20 3f 20 22  t+1==v.end() ? "
0660: 22 20 3a 20 22 2c 20 22 29 3b 20 6f 73 20 3c 3c  " : ", "); os <<
0670: 20 22 20 7d 22 3b 20 72 65 74 75 72 6e 20 6f 73   " }"; return os
0680: 3b 20 7d 0d 0a 76 6f 69 64 20 76 65 72 69 66 79  ; }..void verify
0690: 5f 63 61 73 65 28 63 6f 6e 73 74 20 64 6f 75 62  _case(const doub
06a0: 6c 65 26 20 45 78 70 65 63 74 65 64 2c 20 63 6f  le& Expected, co
06b0: 6e 73 74 20 64 6f 75 62 6c 65 26 20 52 65 63 65  nst double& Rece
06c0: 69 76 65 64 29 20 7b 0d 0a 20 62 6f 6f 6c 20 6f  ived) {.. bool o
06d0: 6b 20 3d 20 28 61 62 73 28 45 78 70 65 63 74 65  k = (abs(Expecte
06e0: 64 20 2d 20 52 65 63 65 69 76 65 64 29 20 3c 20  d - Received) < 
06f0: 31 65 2d 39 29 3b 0d 0a 20 69 66 28 6f 6b 29 20  1e-9);.. if(ok) 
0700: 63 65 72 72 20 3c 3c 20 22 50 41 53 53 45 44 22  cerr << "PASSED"
0710: 20 3c 3c 20 74 69 6d 65 72 28 29 20 3c 3c 20 65   << timer() << e
0720: 6e 64 6c 3b 20 20 65 6c 73 65 20 7b 20 63 65 72  ndl;  else { cer
0730: 72 20 3c 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c  r << "FAILED" <<
0740: 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c   timer() << endl
0750: 3b 0d 0a 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f  ;.. cerr << "\to
0760: 3a 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65  : \"" << Expecte
0770: 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64  d << '\"' << end
0780: 6c 20 3c 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c  l << "\tx: \"" <
0790: 3c 20 52 65 63 65 69 76 65 64 20 3c 3c 20 27 5c  < Received << '\
07a0: 22 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d  "' << endl; } }.
07b0: 0a 23 64 65 66 69 6e 65 20 43 41 53 45 28 4e 29  .#define CASE(N)
07c0: 20 7b 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20   {cerr << "Test 
07d0: 43 61 73 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20  Case #" << N << 
07e0: 22 2e 2e 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20  "..." << flush; 
07f0: 73 74 61 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b  start_time=clock
0800: 28 29 3b 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44  ();..#define END
0810: 09 20 76 65 72 69 66 79 5f 63 61 73 65 28 5f 2c  . verify_case(_,
0820: 20 51 75 69 63 6b 53 6f 72 74 28 29 2e 67 65 74   QuickSort().get
0830: 45 76 61 6c 28 4c 29 29 3b 7d 0d 0a 69 6e 74 20  Eval(L));}..int 
0840: 6d 61 69 6e 28 29 7b 0d 0a 0d 0a 43 41 53 45 28  main(){....CASE(
0850: 30 29 0d 0a 09 69 6e 74 20 4c 5f 5b 5d 20 3d 20  0)...int L_[] = 
0860: 7b 31 2c 32 2c 33 2c 34 2c 35 7d 3b 0d 0a 09 20  {1,2,3,4,5};... 
0870: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 4c 28   vector <int> L(
0880: 4c 5f 2c 20 4c 5f 2b 73 69 7a 65 6f 66 28 4c 5f  L_, L_+sizeof(L_
0890: 29 2f 73 69 7a 65 6f 66 28 2a 4c 5f 29 29 3b 20  )/sizeof(*L_)); 
08a0: 0d 0a 09 64 6f 75 62 6c 65 20 5f 20 3d 20 30 2e  ...double _ = 0.
08b0: 30 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 31  0; ..END..CASE(1
08c0: 29 0d 0a 09 69 6e 74 20 4c 5f 5b 5d 20 3d 20 7b  )...int L_[] = {
08d0: 31 2c 32 2c 34 2c 33 2c 35 2c 36 7d 3b 0d 0a 09  1,2,4,3,5,6};...
08e0: 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 4c    vector <int> L
08f0: 28 4c 5f 2c 20 4c 5f 2b 73 69 7a 65 6f 66 28 4c  (L_, L_+sizeof(L
0900: 5f 29 2f 73 69 7a 65 6f 66 28 2a 4c 5f 29 29 3b  _)/sizeof(*L_));
0910: 20 0d 0a 09 64 6f 75 62 6c 65 20 5f 20 3d 20 31   ...double _ = 1
0920: 2e 30 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28  .0; ..END..CASE(
0930: 32 29 0d 0a 09 69 6e 74 20 4c 5f 5b 5d 20 3d 20  2)...int L_[] = 
0940: 7b 33 2c 32 2c 31 7d 3b 0d 0a 09 20 20 76 65 63  {3,2,1};...  vec
0950: 74 6f 72 20 3c 69 6e 74 3e 20 4c 28 4c 5f 2c 20  tor <int> L(L_, 
0960: 4c 5f 2b 73 69 7a 65 6f 66 28 4c 5f 29 2f 73 69  L_+sizeof(L_)/si
0970: 7a 65 6f 66 28 2a 4c 5f 29 29 3b 20 0d 0a 09 64  zeof(*L_)); ...d
0980: 6f 75 62 6c 65 20 5f 20 3d 20 32 2e 36 36 36 36  ouble _ = 2.6666
0990: 36 36 36 36 36 36 36 36 36 36 36 35 3b 20 0d 0a  666666666665; ..
09a0: 45 4e 44 0d 0a 43 41 53 45 28 33 29 0d 0a 09 69  END..CASE(3)...i
09b0: 6e 74 20 4c 5f 5b 5d 20 3d 20 7b 35 30 2c 34 30  nt L_[] = {50,40
09c0: 2c 33 30 2c 32 30 2c 31 30 2c 31 35 2c 32 35 2c  ,30,20,10,15,25,
09d0: 33 35 2c 34 35 7d 3b 0d 0a 09 20 20 76 65 63 74  35,45};...  vect
09e0: 6f 72 20 3c 69 6e 74 3e 20 4c 28 4c 5f 2c 20 4c  or <int> L(L_, L
09f0: 5f 2b 73 69 7a 65 6f 66 28 4c 5f 29 2f 73 69 7a  _+sizeof(L_)/siz
0a00: 65 6f 66 28 2a 4c 5f 29 29 3b 20 0d 0a 09 64 6f  eof(*L_)); ...do
0a10: 75 62 6c 65 20 5f 20 3d 20 31 31 2e 30 37 36 39  uble _ = 11.0769
0a20: 38 34 31 32 36 39 38 34 31 33 3b 20 0d 0a 45 4e  8412698413; ..EN
0a30: 44 0d 0a 43 41 53 45 28 34 29 0d 0a 09 69 6e 74  D..CASE(4)...int
0a40: 20 4c 5f 5b 5d 20 3d 20 7b 31 2c 32 2c 33 2c 34   L_[] = {1,2,3,4
0a50: 2c 35 2c 36 2c 37 2c 38 2c 39 2c 31 30 2c 31 31  ,5,6,7,8,9,10,11
0a60: 2c 31 32 2c 31 33 2c 31 34 2c 31 35 2c 31 36 2c  ,12,13,14,15,16,
0a70: 31 37 2c 31 38 2c 31 39 2c 32 30 2c 32 31 2c 32  17,18,19,20,21,2
0a80: 32 2c 32 33 2c 32 34 2c 32 35 2c 32 36 2c 32 37  2,23,24,25,26,27
0a90: 2c 32 38 2c 32 39 2c 33 30 2c 0d 0a 09 33 31 2c  ,28,29,30,...31,
0aa0: 33 32 2c 33 33 2c 33 34 2c 33 35 2c 33 36 2c 33  32,33,34,35,36,3
0ab0: 37 2c 33 38 2c 33 39 2c 34 30 2c 34 31 2c 34 32  7,38,39,40,41,42
0ac0: 2c 34 33 2c 34 34 2c 34 35 2c 34 36 2c 34 37 2c  ,43,44,45,46,47,
0ad0: 34 38 2c 34 39 2c 35 30 7d 3b 0d 0a 09 20 20 76  48,49,50};...  v
0ae0: 65 63 74 6f 72 20 3c 69 6e 74 3e 20 4c 28 4c 5f  ector <int> L(L_
0af0: 2c 20 4c 5f 2b 73 69 7a 65 6f 66 28 4c 5f 29 2f  , L_+sizeof(L_)/
0b00: 73 69 7a 65 6f 66 28 2a 4c 5f 29 29 3b 20 0d 0a  sizeof(*L_)); ..
0b10: 09 64 6f 75 62 6c 65 20 5f 20 3d 20 2d 31 3b 20  .double _ = -1; 
0b20: 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 35 29 0d 0a  ..END..CASE(5)..
0b30: 09 69 6e 74 20 4c 5f 5b 5d 20 3d 20 7b 34 38 2c  .int L_[] = {48,
0b40: 34 39 2c 35 30 2c 31 30 2c 31 31 2c 31 32 2c 34  49,50,10,11,12,4
0b50: 30 2c 34 31 2c 34 32 2c 35 2c 33 39 2c 33 32 2c  0,41,42,5,39,32,
0b60: 33 33 2c 33 34 2c 34 33 2c 34 34 2c 34 35 2c 34  33,34,43,44,45,4
0b70: 36 2c 36 2c 37 2c 38 2c 39 2c 32 32 2c 32 33 2c  6,6,7,8,9,22,23,
0b80: 32 34 2c 32 35 2c 32 36 2c 32 37 2c 32 38 2c 32  24,25,26,27,28,2
0b90: 39 2c 33 30 2c 0d 0a 09 33 31 2c 31 33 2c 31 2c  9,30,...31,13,1,
0ba0: 32 2c 33 2c 34 2c 33 35 2c 33 36 2c 33 37 2c 33  2,3,4,35,36,37,3
0bb0: 38 2c 34 37 2c 31 34 2c 31 35 2c 31 36 2c 31 37  8,47,14,15,16,17
0bc0: 2c 31 38 2c 31 39 2c 32 30 2c 32 31 7d 3b 0d 0a  ,18,19,20,21};..
0bd0: 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20  .  vector <int> 
0be0: 4c 28 4c 5f 2c 20 4c 5f 2b 73 69 7a 65 6f 66 28  L(L_, L_+sizeof(
0bf0: 4c 5f 29 2f 73 69 7a 65 6f 66 28 2a 4c 5f 29 29  L_)/sizeof(*L_))
0c00: 3b 20 0d 0a 09 64 6f 75 62 6c 65 20 5f 20 3d 20  ; ...double _ = 
0c10: 2d 31 3b 20 0d 0a 45 4e 44 0d 0a 7d 0d 0a 2f 2f  -1; ..END..}..//
0c20: 20 45 4e 44 20 43 55 54 20 48 45 52 45 0d 0a      END CUT HERE..