Hex Artifact Content
Not logged in

Artifact 569c7cb5f3c676efeaf080a98659f15928f791f6:


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 54 68  CMP;....class Th
01a0: 65 41 69 72 54 72 69 70 44 69 76 54 77 6f 20 7b  eAirTripDivTwo {
01b0: 20 70 75 62 6c 69 63 3a 0d 0a 09 69 6e 74 20 66   public:...int f
01c0: 69 6e 64 28 76 65 63 74 6f 72 20 3c 69 6e 74 3e  ind(vector <int>
01d0: 20 66 6c 69 67 68 74 73 2c 20 69 6e 74 20 66 75   flights, int fu
01e0: 65 6c 29 20 0d 0a 09 7b 0d 0a 09 09 70 61 72 74  el) ...{....part
01f0: 69 61 6c 5f 73 75 6d 28 66 6c 69 67 68 74 73 2e  ial_sum(flights.
0200: 62 65 67 69 6e 28 29 2c 20 66 6c 69 67 68 74 73  begin(), flights
0210: 2e 65 6e 64 28 29 2c 20 66 6c 69 67 68 74 73 2e  .end(), flights.
0220: 62 65 67 69 6e 28 29 29 3b 0d 0a 09 09 72 65 74  begin());....ret
0230: 75 72 6e 20 75 70 70 65 72 5f 62 6f 75 6e 64 28  urn upper_bound(
0240: 66 6c 69 67 68 74 73 2e 62 65 67 69 6e 28 29 2c  flights.begin(),
0250: 20 66 6c 69 67 68 74 73 2e 65 6e 64 28 29 2c 20   flights.end(), 
0260: 66 75 65 6c 29 20 2d 20 66 6c 69 67 68 74 73 2e  fuel) - flights.
0270: 62 65 67 69 6e 28 29 3b 0d 0a 09 7d 0d 0a 7d 3b  begin();...}..};
0280: 0d 0a 0d 0a 2f 2f 20 42 45 47 49 4e 20 43 55 54  ....// BEGIN CUT
0290: 20 48 45 52 45 0d 0a 23 69 6e 63 6c 75 64 65 20   HERE..#include 
02a0: 3c 63 74 69 6d 65 3e 0d 0a 64 6f 75 62 6c 65 20  <ctime>..double 
02b0: 73 74 61 72 74 5f 74 69 6d 65 3b 20 73 74 72 69  start_time; stri
02c0: 6e 67 20 74 69 6d 65 72 28 29 0d 0a 20 7b 20 6f  ng timer().. { o
02d0: 73 74 72 69 6e 67 73 74 72 65 61 6d 20 6f 73 3b  stringstream os;
02e0: 20 6f 73 20 3c 3c 20 22 20 28 22 20 3c 3c 20 69   os << " (" << i
02f0: 6e 74 28 28 63 6c 6f 63 6b 28 29 2d 73 74 61 72  nt((clock()-star
0300: 74 5f 74 69 6d 65 29 2f 43 4c 4f 43 4b 53 5f 50  t_time)/CLOCKS_P
0310: 45 52 5f 53 45 43 2a 31 30 30 30 29 20 3c 3c 20  ER_SEC*1000) << 
0320: 22 20 6d 73 65 63 29 22 3b 20 72 65 74 75 72 6e  " msec)"; return
0330: 20 6f 73 2e 73 74 72 28 29 3b 20 7d 0d 0a 74 65   os.str(); }..te
0340: 6d 70 6c 61 74 65 3c 74 79 70 65 6e 61 6d 65 20  mplate<typename 
0350: 54 3e 20 6f 73 74 72 65 61 6d 26 20 6f 70 65 72  T> ostream& oper
0360: 61 74 6f 72 3c 3c 28 6f 73 74 72 65 61 6d 26 20  ator<<(ostream& 
0370: 6f 73 2c 20 63 6f 6e 73 74 20 76 65 63 74 6f 72  os, const vector
0380: 3c 54 3e 26 20 76 29 0d 0a 20 7b 20 6f 73 20 3c  <T>& v).. { os <
0390: 3c 20 22 7b 20 22 3b 0d 0a 20 20 20 66 6f 72 28  < "{ ";..   for(
03a0: 74 79 70 65 6e 61 6d 65 20 76 65 63 74 6f 72 3c  typename vector<
03b0: 54 3e 3a 3a 63 6f 6e 73 74 5f 69 74 65 72 61 74  T>::const_iterat
03c0: 6f 72 20 69 74 3d 76 2e 62 65 67 69 6e 28 29 3b  or it=v.begin();
03d0: 20 69 74 21 3d 76 2e 65 6e 64 28 29 3b 20 2b 2b   it!=v.end(); ++
03e0: 69 74 29 0d 0a 20 20 20 6f 73 20 3c 3c 20 27 5c  it)..   os << '\
03f0: 22 27 20 3c 3c 20 2a 69 74 20 3c 3c 20 27 5c 22  "' << *it << '\"
0400: 27 20 3c 3c 20 28 69 74 2b 31 3d 3d 76 2e 65 6e  ' << (it+1==v.en
0410: 64 28 29 20 3f 20 22 22 20 3a 20 22 2c 20 22 29  d() ? "" : ", ")
0420: 3b 20 6f 73 20 3c 3c 20 22 20 7d 22 3b 20 72 65  ; os << " }"; re
0430: 74 75 72 6e 20 6f 73 3b 20 7d 0d 0a 76 6f 69 64  turn os; }..void
0440: 20 76 65 72 69 66 79 5f 63 61 73 65 28 63 6f 6e   verify_case(con
0450: 73 74 20 69 6e 74 26 20 45 78 70 65 63 74 65 64  st int& Expected
0460: 2c 20 63 6f 6e 73 74 20 69 6e 74 26 20 52 65 63  , const int& Rec
0470: 65 69 76 65 64 29 20 7b 0d 0a 20 62 6f 6f 6c 20  eived) {.. bool 
0480: 6f 6b 20 3d 20 28 45 78 70 65 63 74 65 64 20 3d  ok = (Expected =
0490: 3d 20 52 65 63 65 69 76 65 64 29 3b 0d 0a 20 69  = Received);.. i
04a0: 66 28 6f 6b 29 20 63 65 72 72 20 3c 3c 20 22 50  f(ok) cerr << "P
04b0: 41 53 53 45 44 22 20 3c 3c 20 74 69 6d 65 72 28  ASSED" << timer(
04c0: 29 20 3c 3c 20 65 6e 64 6c 3b 20 20 65 6c 73 65  ) << endl;  else
04d0: 20 7b 20 63 65 72 72 20 3c 3c 20 22 46 41 49 4c   { cerr << "FAIL
04e0: 45 44 22 20 3c 3c 20 74 69 6d 65 72 28 29 20 3c  ED" << timer() <
04f0: 3c 20 65 6e 64 6c 3b 0d 0a 20 63 65 72 72 20 3c  < endl;.. cerr <
0500: 3c 20 22 5c 74 6f 3a 20 5c 22 22 20 3c 3c 20 45  < "\to: \"" << E
0510: 78 70 65 63 74 65 64 20 3c 3c 20 27 5c 22 27 20  xpected << '\"' 
0520: 3c 3c 20 65 6e 64 6c 20 3c 3c 20 22 5c 74 78 3a  << endl << "\tx:
0530: 20 5c 22 22 20 3c 3c 20 52 65 63 65 69 76 65 64   \"" << Received
0540: 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 6c   << '\"' << endl
0550: 3b 20 7d 20 7d 0d 0a 23 64 65 66 69 6e 65 20 43  ; } }..#define C
0560: 41 53 45 28 4e 29 20 7b 63 65 72 72 20 3c 3c 20  ASE(N) {cerr << 
0570: 22 54 65 73 74 20 43 61 73 65 20 23 22 20 3c 3c  "Test Case #" <<
0580: 20 4e 20 3c 3c 20 22 2e 2e 2e 22 20 3c 3c 20 66   N << "..." << f
0590: 6c 75 73 68 3b 20 73 74 61 72 74 5f 74 69 6d 65  lush; start_time
05a0: 3d 63 6c 6f 63 6b 28 29 3b 0d 0a 23 64 65 66 69  =clock();..#defi
05b0: 6e 65 20 45 4e 44 09 20 76 65 72 69 66 79 5f 63  ne END. verify_c
05c0: 61 73 65 28 5f 2c 20 54 68 65 41 69 72 54 72 69  ase(_, TheAirTri
05d0: 70 44 69 76 54 77 6f 28 29 2e 66 69 6e 64 28 66  pDivTwo().find(f
05e0: 6c 69 67 68 74 73 2c 20 66 75 65 6c 29 29 3b 7d  lights, fuel));}
05f0: 0d 0a 69 6e 74 20 6d 61 69 6e 28 29 7b 0d 0a 0d  ..int main(){...
0600: 0a 43 41 53 45 28 30 29 0d 0a 09 69 6e 74 20 66  .CASE(0)...int f
0610: 6c 69 67 68 74 73 5f 5b 5d 20 3d 20 7b 31 2c 20  lights_[] = {1, 
0620: 32 2c 20 33 2c 20 34 2c 20 35 2c 20 36 2c 20 37  2, 3, 4, 5, 6, 7
0630: 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69  };...  vector <i
0640: 6e 74 3e 20 66 6c 69 67 68 74 73 28 66 6c 69 67  nt> flights(flig
0650: 68 74 73 5f 2c 20 66 6c 69 67 68 74 73 5f 2b 73  hts_, flights_+s
0660: 69 7a 65 6f 66 28 66 6c 69 67 68 74 73 5f 29 2f  izeof(flights_)/
0670: 73 69 7a 65 6f 66 28 2a 66 6c 69 67 68 74 73 5f  sizeof(*flights_
0680: 29 29 3b 20 0d 0a 09 69 6e 74 20 66 75 65 6c 20  )); ...int fuel 
0690: 3d 20 31 30 3b 20 0d 0a 09 69 6e 74 20 5f 20 3d  = 10; ...int _ =
06a0: 20 34 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28   4; ..END..CASE(
06b0: 31 29 0d 0a 09 69 6e 74 20 66 6c 69 67 68 74 73  1)...int flights
06c0: 5f 5b 5d 20 3d 20 7b 37 2c 20 36 2c 20 35 2c 20  _[] = {7, 6, 5, 
06d0: 34 2c 20 33 2c 20 32 2c 20 31 7d 3b 0d 0a 09 20  4, 3, 2, 1};... 
06e0: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 66 6c   vector <int> fl
06f0: 69 67 68 74 73 28 66 6c 69 67 68 74 73 5f 2c 20  ights(flights_, 
0700: 66 6c 69 67 68 74 73 5f 2b 73 69 7a 65 6f 66 28  flights_+sizeof(
0710: 66 6c 69 67 68 74 73 5f 29 2f 73 69 7a 65 6f 66  flights_)/sizeof
0720: 28 2a 66 6c 69 67 68 74 73 5f 29 29 3b 20 0d 0a  (*flights_)); ..
0730: 09 69 6e 74 20 66 75 65 6c 20 3d 20 31 30 3b 20  .int fuel = 10; 
0740: 0d 0a 09 69 6e 74 20 5f 20 3d 20 31 3b 20 0d 0a  ...int _ = 1; ..
0750: 45 4e 44 0d 0a 43 41 53 45 28 32 29 0d 0a 09 69  END..CASE(2)...i
0760: 6e 74 20 66 6c 69 67 68 74 73 5f 5b 5d 20 3d 20  nt flights_[] = 
0770: 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20  {1};...  vector 
0780: 3c 69 6e 74 3e 20 66 6c 69 67 68 74 73 28 66 6c  <int> flights(fl
0790: 69 67 68 74 73 5f 2c 20 66 6c 69 67 68 74 73 5f  ights_, flights_
07a0: 2b 73 69 7a 65 6f 66 28 66 6c 69 67 68 74 73 5f  +sizeof(flights_
07b0: 29 2f 73 69 7a 65 6f 66 28 2a 66 6c 69 67 68 74  )/sizeof(*flight
07c0: 73 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 66 75 65  s_)); ...int fue
07d0: 6c 20 3d 20 31 30 30 30 3b 20 0d 0a 09 69 6e 74  l = 1000; ...int
07e0: 20 5f 20 3d 20 31 3b 20 0d 0a 45 4e 44 0d 0a 43   _ = 1; ..END..C
07f0: 41 53 45 28 33 29 0d 0a 09 69 6e 74 20 66 6c 69  ASE(3)...int fli
0800: 67 68 74 73 5f 5b 5d 20 3d 20 7b 38 2c 20 37 2c  ghts_[] = {8, 7,
0810: 20 37 2c 20 31 2c 20 35 2c 20 37 2c 20 39 7d 3b   7, 1, 5, 7, 9};
0820: 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74  ...  vector <int
0830: 3e 20 66 6c 69 67 68 74 73 28 66 6c 69 67 68 74  > flights(flight
0840: 73 5f 2c 20 66 6c 69 67 68 74 73 5f 2b 73 69 7a  s_, flights_+siz
0850: 65 6f 66 28 66 6c 69 67 68 74 73 5f 29 2f 73 69  eof(flights_)/si
0860: 7a 65 6f 66 28 2a 66 6c 69 67 68 74 73 5f 29 29  zeof(*flights_))
0870: 3b 20 0d 0a 09 69 6e 74 20 66 75 65 6c 20 3d 20  ; ...int fuel = 
0880: 32 31 3b 20 0d 0a 09 69 6e 74 20 5f 20 3d 20 32  21; ...int _ = 2
0890: 3b 20 0d 0a 45 4e 44 0d 0a 09 2f 2a 0d 0a 43 41  ; ..END.../*..CA
08a0: 53 45 28 34 29 0d 0a 09 69 6e 74 20 66 6c 69 67  SE(4)...int flig
08b0: 68 74 73 5f 5b 5d 20 3d 20 3b 0d 0a 09 20 20 76  hts_[] = ;...  v
08c0: 65 63 74 6f 72 20 3c 69 6e 74 3e 20 66 6c 69 67  ector <int> flig
08d0: 68 74 73 28 66 6c 69 67 68 74 73 5f 2c 20 66 6c  hts(flights_, fl
08e0: 69 67 68 74 73 5f 2b 73 69 7a 65 6f 66 28 66 6c  ights_+sizeof(fl
08f0: 69 67 68 74 73 5f 29 2f 73 69 7a 65 6f 66 28 2a  ights_)/sizeof(*
0900: 66 6c 69 67 68 74 73 5f 29 29 3b 20 0d 0a 09 69  flights_)); ...i
0910: 6e 74 20 66 75 65 6c 20 3d 20 3b 20 0d 0a 09 69  nt fuel = ; ...i
0920: 6e 74 20 5f 20 3d 20 3b 20 0d 0a 45 4e 44 0d 0a  nt _ = ; ..END..
0930: 43 41 53 45 28 35 29 0d 0a 09 69 6e 74 20 66 6c  CASE(5)...int fl
0940: 69 67 68 74 73 5f 5b 5d 20 3d 20 3b 0d 0a 09 20  ights_[] = ;... 
0950: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 66 6c   vector <int> fl
0960: 69 67 68 74 73 28 66 6c 69 67 68 74 73 5f 2c 20  ights(flights_, 
0970: 66 6c 69 67 68 74 73 5f 2b 73 69 7a 65 6f 66 28  flights_+sizeof(
0980: 66 6c 69 67 68 74 73 5f 29 2f 73 69 7a 65 6f 66  flights_)/sizeof
0990: 28 2a 66 6c 69 67 68 74 73 5f 29 29 3b 20 0d 0a  (*flights_)); ..
09a0: 09 69 6e 74 20 66 75 65 6c 20 3d 20 3b 20 0d 0a  .int fuel = ; ..
09b0: 09 69 6e 74 20 5f 20 3d 20 3b 20 0d 0a 45 4e 44  .int _ = ; ..END
09c0: 0d 0a 2a 2f 0d 0a 7d 0d 0a 2f 2f 20 45 4e 44 20  ..*/..}..// END 
09d0: 43 55 54 20 48 45 52 45 0d 0a                    CUT HERE..