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 4d 6f 76 69 65 73 4c 65 76 65 6c 4f 6e 65 44 eMoviesLevelOneD
01b0: 69 76 4f 6e 65 20 7b 20 70 75 62 6c 69 63 3a 0d ivOne { public:.
01c0: 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 66 69 6e 64 ..long long find
01d0: 28 69 6e 74 20 6e 2c 20 69 6e 74 20 6d 2c 20 76 (int n, int m, v
01e0: 65 63 74 6f 72 20 3c 69 6e 74 3e 20 72 6f 77 2c ector <int> row,
01f0: 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 73 65 vector <int> se
0200: 61 74 29 20 0d 0a 09 7b 0d 0a 09 09 4c 4c 20 61 at) ...{....LL a
0210: 6c 6c 20 3d 20 4c 4c 28 6e 29 2a 4c 4c 28 6d 2d ll = LL(n)*LL(m-
0220: 31 29 3b 0d 0a 0d 0a 09 09 73 65 74 3c 20 70 61 1);......set< pa
0230: 69 72 3c 69 6e 74 2c 69 6e 74 3e 20 3e 20 64 65 ir<int,int> > de
0240: 61 64 3b 0d 0a 09 09 66 6f 72 28 69 6e 74 20 69 ad;....for(int i
0250: 3d 30 3b 20 69 3c 72 6f 77 2e 73 69 7a 65 28 29 =0; i<row.size()
0260: 3b 20 2b 2b 69 29 0d 0a 09 09 7b 0d 0a 09 09 09 ; ++i)....{.....
0270: 69 6e 74 20 79 20 3d 20 72 6f 77 5b 69 5d 2d 31 int y = row[i]-1
0280: 3b 0d 0a 09 09 09 69 6e 74 20 78 20 3d 20 73 65 ;.....int x = se
0290: 61 74 5b 69 5d 2d 31 3b 0d 0a 09 09 09 69 66 28 at[i]-1;.....if(
02a0: 78 3c 6d 2d 31 29 64 65 61 64 2e 69 6e 73 65 72 x<m-1)dead.inser
02b0: 74 28 20 6d 61 6b 65 5f 70 61 69 72 28 79 2c 78 t( make_pair(y,x
02c0: 29 20 29 3b 0d 0a 09 09 09 69 66 28 78 3e 30 29 ) );.....if(x>0)
02d0: 20 64 65 61 64 2e 69 6e 73 65 72 74 28 20 6d 61 dead.insert( ma
02e0: 6b 65 5f 70 61 69 72 28 79 2c 78 2d 31 29 20 29 ke_pair(y,x-1) )
02f0: 3b 0d 0a 09 09 7d 0d 0a 09 09 72 65 74 75 72 6e ;....}....return
0300: 20 61 6c 6c 20 2d 20 64 65 61 64 2e 73 69 7a 65 all - dead.size
0310: 28 29 3b 0d 0a 09 7d 0d 0a 7d 3b 0d 0a 0d 0a 2f ();...}..};..../
0320: 2f 20 42 45 47 49 4e 20 43 55 54 20 48 45 52 45 / BEGIN CUT HERE
0330: 0d 0a 23 69 6e 63 6c 75 64 65 20 3c 63 74 69 6d ..#include <ctim
0340: 65 3e 0d 0a 64 6f 75 62 6c 65 20 73 74 61 72 74 e>..double start
0350: 5f 74 69 6d 65 3b 20 73 74 72 69 6e 67 20 74 69 _time; string ti
0360: 6d 65 72 28 29 0d 0a 20 7b 20 6f 73 74 72 69 6e mer().. { ostrin
0370: 67 73 74 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c gstream os; os <
0380: 3c 20 22 20 28 22 20 3c 3c 20 69 6e 74 28 28 63 < " (" << int((c
0390: 6c 6f 63 6b 28 29 2d 73 74 61 72 74 5f 74 69 6d lock()-start_tim
03a0: 65 29 2f 43 4c 4f 43 4b 53 5f 50 45 52 5f 53 45 e)/CLOCKS_PER_SE
03b0: 43 2a 31 30 30 30 29 20 3c 3c 20 22 20 6d 73 65 C*1000) << " mse
03c0: 63 29 22 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 c)"; return os.s
03d0: 74 72 28 29 3b 20 7d 0d 0a 74 65 6d 70 6c 61 74 tr(); }..templat
03e0: 65 3c 74 79 70 65 6e 61 6d 65 20 54 3e 20 6f 73 e<typename T> os
03f0: 74 72 65 61 6d 26 20 6f 70 65 72 61 74 6f 72 3c tream& operator<
0400: 3c 28 6f 73 74 72 65 61 6d 26 20 6f 73 2c 20 63 <(ostream& os, c
0410: 6f 6e 73 74 20 76 65 63 74 6f 72 3c 54 3e 26 20 onst vector<T>&
0420: 76 29 0d 0a 20 7b 20 6f 73 20 3c 3c 20 22 7b 20 v).. { os << "{
0430: 22 3b 0d 0a 20 20 20 66 6f 72 28 74 79 70 65 6e ";.. for(typen
0440: 61 6d 65 20 76 65 63 74 6f 72 3c 54 3e 3a 3a 63 ame vector<T>::c
0450: 6f 6e 73 74 5f 69 74 65 72 61 74 6f 72 20 69 74 onst_iterator it
0460: 3d 76 2e 62 65 67 69 6e 28 29 3b 20 69 74 21 3d =v.begin(); it!=
0470: 76 2e 65 6e 64 28 29 3b 20 2b 2b 69 74 29 0d 0a v.end(); ++it)..
0480: 20 20 20 6f 73 20 3c 3c 20 27 5c 22 27 20 3c 3c os << '\"' <<
0490: 20 2a 69 74 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 *it << '\"' <<
04a0: 28 69 74 2b 31 3d 3d 76 2e 65 6e 64 28 29 20 3f (it+1==v.end() ?
04b0: 20 22 22 20 3a 20 22 2c 20 22 29 3b 20 6f 73 20 "" : ", "); os
04c0: 3c 3c 20 22 20 7d 22 3b 20 72 65 74 75 72 6e 20 << " }"; return
04d0: 6f 73 3b 20 7d 0d 0a 76 6f 69 64 20 76 65 72 69 os; }..void veri
04e0: 66 79 5f 63 61 73 65 28 63 6f 6e 73 74 20 6c 6f fy_case(const lo
04f0: 6e 67 20 6c 6f 6e 67 26 20 45 78 70 65 63 74 65 ng long& Expecte
0500: 64 2c 20 63 6f 6e 73 74 20 6c 6f 6e 67 20 6c 6f d, const long lo
0510: 6e 67 26 20 52 65 63 65 69 76 65 64 29 20 7b 0d ng& Received) {.
0520: 0a 20 62 6f 6f 6c 20 6f 6b 20 3d 20 28 45 78 70 . bool ok = (Exp
0530: 65 63 74 65 64 20 3d 3d 20 52 65 63 65 69 76 65 ected == Receive
0540: 64 29 3b 0d 0a 20 69 66 28 6f 6b 29 20 63 65 72 d);.. if(ok) cer
0550: 72 20 3c 3c 20 22 50 41 53 53 45 44 22 20 3c 3c r << "PASSED" <<
0560: 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c timer() << endl
0570: 3b 20 20 65 6c 73 65 20 7b 20 63 65 72 72 20 3c ; else { cerr <
0580: 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c 20 74 69 < "FAILED" << ti
0590: 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c 3b 0d 0a mer() << endl;..
05a0: 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f 3a 20 5c cerr << "\to: \
05b0: 22 22 20 3c 3c 20 45 78 70 65 63 74 65 64 20 3c "" << Expected <
05c0: 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 6c 20 3c < '\"' << endl <
05d0: 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c 3c 20 52 < "\tx: \"" << R
05e0: 65 63 65 69 76 65 64 20 3c 3c 20 27 5c 22 27 20 eceived << '\"'
05f0: 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d 0a 23 64 << endl; } }..#d
0600: 65 66 69 6e 65 20 43 41 53 45 28 4e 29 20 7b 63 efine CASE(N) {c
0610: 65 72 72 20 3c 3c 20 22 54 65 73 74 20 43 61 73 err << "Test Cas
0620: 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20 22 2e 2e e #" << N << "..
0630: 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20 73 74 61 ." << flush; sta
0640: 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b 28 29 3b rt_time=clock();
0650: 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44 09 20 76 ..#define END. v
0660: 65 72 69 66 79 5f 63 61 73 65 28 5f 2c 20 54 68 erify_case(_, Th
0670: 65 4d 6f 76 69 65 73 4c 65 76 65 6c 4f 6e 65 44 eMoviesLevelOneD
0680: 69 76 4f 6e 65 28 29 2e 66 69 6e 64 28 6e 2c 20 ivOne().find(n,
0690: 6d 2c 20 72 6f 77 2c 20 73 65 61 74 29 29 3b 7d m, row, seat));}
06a0: 0d 0a 69 6e 74 20 6d 61 69 6e 28 29 7b 0d 0a 0d ..int main(){...
06b0: 0a 43 41 53 45 28 30 29 0d 0a 09 69 6e 74 20 6e .CASE(0)...int n
06c0: 20 3d 20 32 3b 20 0d 0a 09 69 6e 74 20 6d 20 3d = 2; ...int m =
06d0: 20 33 3b 20 0d 0a 09 69 6e 74 20 72 6f 77 5f 5b 3; ...int row_[
06e0: 5d 20 3d 20 7b 31 2c 20 32 7d 3b 0d 0a 09 20 20 ] = {1, 2};...
06f0: 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 72 6f 77 vector <int> row
0700: 28 72 6f 77 5f 2c 20 72 6f 77 5f 2b 73 69 7a 65 (row_, row_+size
0710: 6f 66 28 72 6f 77 5f 29 2f 73 69 7a 65 6f 66 28 of(row_)/sizeof(
0720: 2a 72 6f 77 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 *row_)); ...int
0730: 73 65 61 74 5f 5b 5d 20 3d 20 7b 32 2c 20 33 7d seat_[] = {2, 3}
0740: 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e ;... vector <in
0750: 74 3e 20 73 65 61 74 28 73 65 61 74 5f 2c 20 73 t> seat(seat_, s
0760: 65 61 74 5f 2b 73 69 7a 65 6f 66 28 73 65 61 74 eat_+sizeof(seat
0770: 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 65 61 74 5f _)/sizeof(*seat_
0780: 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 )); ...long long
0790: 20 5f 20 3d 20 31 4c 4c 3b 20 0d 0a 45 4e 44 0d _ = 1LL; ..END.
07a0: 0a 43 41 53 45 28 31 29 0d 0a 09 69 6e 74 20 6e .CASE(1)...int n
07b0: 20 3d 20 32 3b 20 0d 0a 09 69 6e 74 20 6d 20 3d = 2; ...int m =
07c0: 20 33 3b 20 0d 0a 09 69 6e 74 20 72 6f 77 5f 5b 3; ...int row_[
07d0: 5d 20 3d 20 7b 31 2c 20 31 2c 20 31 2c 20 32 2c ] = {1, 1, 1, 2,
07e0: 20 32 2c 20 32 7d 3b 0d 0a 09 20 20 76 65 63 74 2, 2};... vect
07f0: 6f 72 20 3c 69 6e 74 3e 20 72 6f 77 28 72 6f 77 or <int> row(row
0800: 5f 2c 20 72 6f 77 5f 2b 73 69 7a 65 6f 66 28 72 _, row_+sizeof(r
0810: 6f 77 5f 29 2f 73 69 7a 65 6f 66 28 2a 72 6f 77 ow_)/sizeof(*row
0820: 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 73 65 61 74 _)); ...int seat
0830: 5f 5b 5d 20 3d 20 7b 31 2c 20 32 2c 20 33 2c 20 _[] = {1, 2, 3,
0840: 31 2c 20 32 2c 20 33 7d 3b 0d 0a 09 20 20 76 65 1, 2, 3};... ve
0850: 63 74 6f 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 ctor <int> seat(
0860: 73 65 61 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a seat_, seat_+siz
0870: 65 6f 66 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f eof(seat_)/sizeo
0880: 66 28 2a 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c f(*seat_)); ...l
0890: 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 30 4c 4c ong long _ = 0LL
08a0: 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 32 29 ; ..END..CASE(2)
08b0: 0d 0a 09 69 6e 74 20 6e 20 3d 20 34 3b 20 0d 0a ...int n = 4; ..
08c0: 09 69 6e 74 20 6d 20 3d 20 37 3b 20 0d 0a 09 69 .int m = 7; ...i
08d0: 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b 31 7d 3b nt row_[] = {1};
08e0: 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 ... vector <int
08f0: 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 72 6f 77 5f > row(row_, row_
0900: 2b 73 69 7a 65 6f 66 28 72 6f 77 5f 29 2f 73 69 +sizeof(row_)/si
0910: 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 0d 0a zeof(*row_)); ..
0920: 09 69 6e 74 20 73 65 61 74 5f 5b 5d 20 3d 20 7b .int seat_[] = {
0930: 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 1};... vector <
0940: 69 6e 74 3e 20 73 65 61 74 28 73 65 61 74 5f 2c int> seat(seat_,
0950: 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 28 73 65 seat_+sizeof(se
0960: 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 65 61 at_)/sizeof(*sea
0970: 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f t_)); ...long lo
0980: 6e 67 20 5f 20 3d 20 32 33 4c 4c 3b 20 0d 0a 45 ng _ = 23LL; ..E
0990: 4e 44 0d 0a 43 41 53 45 28 33 29 0d 0a 09 69 6e ND..CASE(3)...in
09a0: 74 20 6e 20 3d 20 31 30 3b 20 0d 0a 09 69 6e 74 t n = 10; ...int
09b0: 20 6d 20 3d 20 38 3b 20 0d 0a 09 69 6e 74 20 72 m = 8; ...int r
09c0: 6f 77 5f 5b 5d 20 3d 20 7b 31 2c 20 39 2c 20 36 ow_[] = {1, 9, 6
09d0: 2c 20 31 30 2c 20 36 2c 20 37 2c 20 39 2c 20 33 , 10, 6, 7, 9, 3
09e0: 2c 20 39 2c 20 32 7d 3b 0d 0a 09 20 20 76 65 63 , 9, 2};... vec
09f0: 74 6f 72 20 3c 69 6e 74 3e 20 72 6f 77 28 72 6f tor <int> row(ro
0a00: 77 5f 2c 20 72 6f 77 5f 2b 73 69 7a 65 6f 66 28 w_, row_+sizeof(
0a10: 72 6f 77 5f 29 2f 73 69 7a 65 6f 66 28 2a 72 6f row_)/sizeof(*ro
0a20: 77 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 73 65 61 w_)); ...int sea
0a30: 74 5f 5b 5d 20 3d 20 7b 37 2c 20 37 2c 20 33 2c t_[] = {7, 7, 3,
0a40: 20 33 2c 20 37 2c 20 31 2c 20 35 2c 20 31 2c 20 3, 7, 1, 5, 1,
0a50: 36 2c 20 32 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 6, 2};... vecto
0a60: 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 73 65 61 r <int> seat(sea
0a70: 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 t_, seat_+sizeof
0a80: 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a (seat_)/sizeof(*
0a90: 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 seat_)); ...long
0aa0: 20 6c 6f 6e 67 20 5f 20 3d 20 35 34 4c 4c 3b 20 long _ = 54LL;
0ab0: 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 34 29 0d 0a ..END..CASE(4)..
0ac0: 09 69 6e 74 20 6e 20 3d 20 31 3b 20 0d 0a 09 69 .int n = 1; ...i
0ad0: 6e 74 20 6d 20 3d 20 31 3b 20 0d 0a 09 69 6e 74 nt m = 1; ...int
0ae0: 20 72 6f 77 5f 5b 5d 20 3d 20 7b 31 7d 3b 0d 0a row_[] = {1};..
0af0: 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 . vector <int>
0b00: 72 6f 77 28 72 6f 77 5f 2c 20 72 6f 77 5f 2b 73 row(row_, row_+s
0b10: 69 7a 65 6f 66 28 72 6f 77 5f 29 2f 73 69 7a 65 izeof(row_)/size
0b20: 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 0d 0a 09 20 of(*row_)); ...
0b30: 20 69 6e 74 20 73 65 61 74 5f 5b 5d 20 3d 20 7b int seat_[] = {
0b40: 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 1};... vector <
0b50: 69 6e 74 3e 20 73 65 61 74 28 73 65 61 74 5f 2c int> seat(seat_,
0b60: 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 28 73 65 seat_+sizeof(se
0b70: 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 65 61 at_)/sizeof(*sea
0b80: 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f t_)); ...long lo
0b90: 6e 67 20 5f 20 3d 20 30 4c 4c 3b 20 0d 0a 45 4e ng _ = 0LL; ..EN
0ba0: 44 0d 0a 43 41 53 45 28 35 29 0d 0a 09 69 6e 74 D..CASE(5)...int
0bb0: 20 6e 20 3d 20 31 30 30 30 30 30 30 30 30 30 3b n = 1000000000;
0bc0: 20 0d 0a 09 69 6e 74 20 6d 20 3d 20 31 3b 20 0d ...int m = 1; .
0bd0: 0a 09 69 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b ..int row_[] = {
0be0: 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 1};... vector <
0bf0: 69 6e 74 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 72 int> row(row_, r
0c00: 6f 77 5f 2b 73 69 7a 65 6f 66 28 72 6f 77 5f 29 ow_+sizeof(row_)
0c10: 2f 73 69 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 3b /sizeof(*row_));
0c20: 20 0d 0a 09 20 20 69 6e 74 20 73 65 61 74 5f 5b ... int seat_[
0c30: 5d 20 3d 20 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 ] = {1};... vec
0c40: 74 6f 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 73 tor <int> seat(s
0c50: 65 61 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a 65 eat_, seat_+size
0c60: 6f 66 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f 66 of(seat_)/sizeof
0c70: 28 2a 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f (*seat_)); ...lo
0c80: 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 30 4c 4c 3b ng long _ = 0LL;
0c90: 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 36 29 0d ..END..CASE(6).
0ca0: 0a 09 69 6e 74 20 6e 20 3d 20 31 30 30 30 30 30 ..int n = 100000
0cb0: 30 30 30 30 3b 20 0d 0a 09 69 6e 74 20 6d 20 3d 0000; ...int m =
0cc0: 20 31 30 30 30 30 30 30 30 31 3b 20 0d 0a 09 69 100000001; ...i
0cd0: 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b 31 7d 3b nt row_[] = {1};
0ce0: 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 ... vector <int
0cf0: 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 72 6f 77 5f > row(row_, row_
0d00: 2b 73 69 7a 65 6f 66 28 72 6f 77 5f 29 2f 73 69 +sizeof(row_)/si
0d10: 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 0d 0a zeof(*row_)); ..
0d20: 09 20 20 69 6e 74 20 73 65 61 74 5f 5b 5d 20 3d . int seat_[] =
0d30: 20 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 {1};... vector
0d40: 20 3c 69 6e 74 3e 20 73 65 61 74 28 73 65 61 74 <int> seat(seat
0d50: 5f 2c 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 28 _, seat_+sizeof(
0d60: 73 65 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 seat_)/sizeof(*s
0d70: 65 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 eat_)); ...long
0d80: 6c 6f 6e 67 20 5f 20 3d 20 31 30 30 30 30 30 30 long _ = 1000000
0d90: 30 30 30 30 30 30 30 30 30 30 30 4c 4c 20 2d 20 00000000000LL -
0da0: 31 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 37 1; ..END..CASE(7
0db0: 29 0d 0a 09 69 6e 74 20 6e 20 3d 20 31 30 30 30 )...int n = 1000
0dc0: 30 30 30 30 30 30 3b 20 0d 0a 09 69 6e 74 20 6d 000000; ...int m
0dd0: 20 3d 20 31 30 30 30 30 30 30 30 31 3b 20 0d 0a = 100000001; ..
0de0: 09 69 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b 32 .int row_[] = {2
0df0: 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 };... vector <i
0e00: 6e 74 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 72 6f nt> row(row_, ro
0e10: 77 5f 2b 73 69 7a 65 6f 66 28 72 6f 77 5f 29 2f w_+sizeof(row_)/
0e20: 73 69 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 sizeof(*row_));
0e30: 0d 0a 09 20 20 69 6e 74 20 73 65 61 74 5f 5b 5d ... int seat_[]
0e40: 20 3d 20 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 74 = {1};... vect
0e50: 6f 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 73 65 or <int> seat(se
0e60: 61 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a 65 6f at_, seat_+sizeo
0e70: 66 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f 66 28 f(seat_)/sizeof(
0e80: 2a 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e *seat_)); ...lon
0e90: 67 20 6c 6f 6e 67 20 5f 20 3d 20 31 30 30 30 30 g long _ = 10000
0ea0: 30 30 30 30 30 30 30 30 30 30 30 30 30 4c 4c 20 0000000000000LL
0eb0: 2d 20 31 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 - 1; ..END..CASE
0ec0: 28 38 29 0d 0a 09 69 6e 74 20 6e 20 3d 20 31 30 (8)...int n = 10
0ed0: 30 30 30 30 30 30 30 30 3b 20 0d 0a 09 69 6e 74 00000000; ...int
0ee0: 20 6d 20 3d 20 31 30 30 30 30 30 30 30 31 3b 20 m = 100000001;
0ef0: 0d 0a 09 69 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 ...int row_[] =
0f00: 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 {1};... vector
0f10: 3c 69 6e 74 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 <int> row(row_,
0f20: 72 6f 77 5f 2b 73 69 7a 65 6f 66 28 72 6f 77 5f row_+sizeof(row_
0f30: 29 2f 73 69 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 )/sizeof(*row_))
0f40: 3b 20 0d 0a 09 20 20 69 6e 74 20 73 65 61 74 5f ; ... int seat_
0f50: 5b 5d 20 3d 20 7b 32 7d 3b 0d 0a 09 20 20 76 65 [] = {2};... ve
0f60: 63 74 6f 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 ctor <int> seat(
0f70: 73 65 61 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a seat_, seat_+siz
0f80: 65 6f 66 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f eof(seat_)/sizeo
0f90: 66 28 2a 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c f(*seat_)); ...l
0fa0: 6f 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 31 30 30 ong long _ = 100
0fb0: 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 4c 000000000000000L
0fc0: 4c 20 2d 20 32 3b 20 0d 0a 45 4e 44 0d 0a 43 41 L - 2; ..END..CA
0fd0: 53 45 28 39 29 0d 0a 09 69 6e 74 20 6e 20 3d 20 SE(9)...int n =
0fe0: 31 30 30 30 30 30 30 30 30 30 3b 20 0d 0a 09 69 1000000000; ...i
0ff0: 6e 74 20 6d 20 3d 20 31 30 30 30 30 30 30 30 31 nt m = 100000001
1000: 3b 20 0d 0a 09 69 6e 74 20 72 6f 77 5f 5b 5d 20 ; ...int row_[]
1010: 3d 20 7b 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f = {1};... vecto
1020: 72 20 3c 69 6e 74 3e 20 72 6f 77 28 72 6f 77 5f r <int> row(row_
1030: 2c 20 72 6f 77 5f 2b 73 69 7a 65 6f 66 28 72 6f , row_+sizeof(ro
1040: 77 5f 29 2f 73 69 7a 65 6f 66 28 2a 72 6f 77 5f w_)/sizeof(*row_
1050: 29 29 3b 20 0d 0a 09 20 20 69 6e 74 20 73 65 61 )); ... int sea
1060: 74 5f 5b 5d 20 3d 20 7b 31 30 30 30 30 30 30 30 t_[] = {10000000
1070: 31 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 1};... vector <
1080: 69 6e 74 3e 20 73 65 61 74 28 73 65 61 74 5f 2c int> seat(seat_,
1090: 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 28 73 65 seat_+sizeof(se
10a0: 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 65 61 at_)/sizeof(*sea
10b0: 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c 6f t_)); ...long lo
10c0: 6e 67 20 5f 20 3d 20 31 30 30 30 30 30 30 30 30 ng _ = 100000000
10d0: 30 30 30 30 30 30 30 30 30 4c 4c 20 2d 20 31 3b 000000000LL - 1;
10e0: 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 31 30 29 ..END..CASE(10)
10f0: 0d 0a 09 69 6e 74 20 6e 20 3d 20 31 30 30 30 30 ...int n = 10000
1100: 30 30 30 30 30 3b 20 0d 0a 09 69 6e 74 20 6d 20 00000; ...int m
1110: 3d 20 31 30 30 30 30 30 30 30 31 3b 20 0d 0a 09 = 100000001; ...
1120: 69 6e 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b 31 7d int row_[] = {1}
1130: 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e ;... vector <in
1140: 74 3e 20 72 6f 77 28 72 6f 77 5f 2c 20 72 6f 77 t> row(row_, row
1150: 5f 2b 73 69 7a 65 6f 66 28 72 6f 77 5f 29 2f 73 _+sizeof(row_)/s
1160: 69 7a 65 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 0d izeof(*row_)); .
1170: 0a 09 20 20 69 6e 74 20 73 65 61 74 5f 5b 5d 20 .. int seat_[]
1180: 3d 20 7b 31 30 30 30 30 30 30 30 30 7d 3b 0d 0a = {100000000};..
1190: 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e 20 . vector <int>
11a0: 73 65 61 74 28 73 65 61 74 5f 2c 20 73 65 61 74 seat(seat_, seat
11b0: 5f 2b 73 69 7a 65 6f 66 28 73 65 61 74 5f 29 2f _+sizeof(seat_)/
11c0: 73 69 7a 65 6f 66 28 2a 73 65 61 74 5f 29 29 3b sizeof(*seat_));
11d0: 20 0d 0a 09 6c 6f 6e 67 20 6c 6f 6e 67 20 5f 20 ...long long _
11e0: 3d 20 31 30 30 30 30 30 30 30 30 30 30 30 30 30 = 10000000000000
11f0: 30 30 30 30 4c 4c 20 2d 20 32 3b 20 0d 0a 45 4e 0000LL - 2; ..EN
1200: 44 0d 0a 43 41 53 45 28 31 31 29 0d 0a 09 69 6e D..CASE(11)...in
1210: 74 20 6e 20 3d 20 33 3b 20 0d 0a 09 69 6e 74 20 t n = 3; ...int
1220: 6d 20 3d 20 33 3b 20 0d 0a 09 69 6e 74 20 72 6f m = 3; ...int ro
1230: 77 5f 5b 5d 20 3d 20 7b 31 2c 32 2c 33 7d 3b 0d w_[] = {1,2,3};.
1240: 0a 09 20 20 76 65 63 74 6f 72 20 3c 69 6e 74 3e .. vector <int>
1250: 20 72 6f 77 28 72 6f 77 5f 2c 20 72 6f 77 5f 2b row(row_, row_+
1260: 73 69 7a 65 6f 66 28 72 6f 77 5f 29 2f 73 69 7a sizeof(row_)/siz
1270: 65 6f 66 28 2a 72 6f 77 5f 29 29 3b 20 0d 0a 09 eof(*row_)); ...
1280: 20 20 69 6e 74 20 73 65 61 74 5f 5b 5d 20 3d 20 int seat_[] =
1290: 7b 32 2c 32 2c 32 7d 3b 0d 0a 09 20 20 76 65 63 {2,2,2};... vec
12a0: 74 6f 72 20 3c 69 6e 74 3e 20 73 65 61 74 28 73 tor <int> seat(s
12b0: 65 61 74 5f 2c 20 73 65 61 74 5f 2b 73 69 7a 65 eat_, seat_+size
12c0: 6f 66 28 73 65 61 74 5f 29 2f 73 69 7a 65 6f 66 of(seat_)/sizeof
12d0: 28 2a 73 65 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f (*seat_)); ...lo
12e0: 6e 67 20 6c 6f 6e 67 20 5f 20 3d 20 30 4c 4c 3b ng long _ = 0LL;
12f0: 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 31 32 29 0d ..END..CASE(12).
1300: 0a 09 69 6e 74 20 6e 20 3d 20 33 3b 20 0d 0a 09 ..int n = 3; ...
1310: 69 6e 74 20 6d 20 3d 20 33 3b 20 0d 0a 09 69 6e int m = 3; ...in
1320: 74 20 72 6f 77 5f 5b 5d 20 3d 20 7b 31 2c 32 2c t row_[] = {1,2,
1330: 33 2c 32 2c 32 7d 3b 0d 0a 09 20 20 76 65 63 74 3,2,2};... vect
1340: 6f 72 20 3c 69 6e 74 3e 20 72 6f 77 28 72 6f 77 or <int> row(row
1350: 5f 2c 20 72 6f 77 5f 2b 73 69 7a 65 6f 66 28 72 _, row_+sizeof(r
1360: 6f 77 5f 29 2f 73 69 7a 65 6f 66 28 2a 72 6f 77 ow_)/sizeof(*row
1370: 5f 29 29 3b 20 0d 0a 09 20 20 69 6e 74 20 73 65 _)); ... int se
1380: 61 74 5f 5b 5d 20 3d 20 7b 31 2c 32 2c 33 2c 31 at_[] = {1,2,3,1
1390: 2c 33 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 20 ,3};... vector
13a0: 3c 69 6e 74 3e 20 73 65 61 74 28 73 65 61 74 5f <int> seat(seat_
13b0: 2c 20 73 65 61 74 5f 2b 73 69 7a 65 6f 66 28 73 , seat_+sizeof(s
13c0: 65 61 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 73 65 eat_)/sizeof(*se
13d0: 61 74 5f 29 29 3b 20 0d 0a 09 6c 6f 6e 67 20 6c at_)); ...long l
13e0: 6f 6e 67 20 5f 20 3d 20 32 4c 4c 3b 0d 0a 45 4e ong _ = 2LL;..EN
13f0: 44 0d 0a 7d 0d 0a 2f 2f 20 45 4e 44 20 43 55 54 D..}..// END CUT
1400: 20 48 45 52 45 0d 0a HERE..