Artifact 51d9cbf8cbd5563061ea2a1e135216e1089472f0:
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 53 71 75 61 P;....class Squa
01a0: 72 65 43 75 74 6f 75 74 20 7b 20 70 75 62 6c 69 reCutout { publi
01b0: 63 3a 0d 0a 09 69 6e 74 20 76 65 72 69 66 79 28 c:...int verify(
01c0: 76 65 63 74 6f 72 20 3c 73 74 72 69 6e 67 3e 20 vector <string>
01d0: 63 75 74 6f 75 74 29 0d 0a 09 7b 0d 0a 09 09 63 cutout)...{....c
01e0: 6f 6e 73 74 20 69 6e 74 20 59 20 3d 20 63 75 74 onst int Y = cut
01f0: 6f 75 74 2e 73 69 7a 65 28 29 2c 20 58 20 3d 20 out.size(), X =
0200: 63 75 74 6f 75 74 5b 30 5d 2e 73 69 7a 65 28 29 cutout[0].size()
0210: 3b 0d 0a 0d 0a 09 09 62 6f 6f 6c 20 68 61 73 5f ;......bool has_
0220: 62 6c 61 63 6b 20 3d 20 66 61 6c 73 65 3b 0d 0a black = false;..
0230: 09 09 66 6f 72 20 28 69 6e 74 20 79 20 3d 20 30 ..for (int y = 0
0240: 3b 20 79 20 3c 20 59 3b 20 2b 2b 79 29 0d 0a 09 ; y < Y; ++y)...
0250: 09 09 66 6f 72 20 28 69 6e 74 20 78 20 3d 20 30 ..for (int x = 0
0260: 3b 20 78 20 3c 20 58 3b 20 2b 2b 78 29 0d 0a 09 ; x < X; ++x)...
0270: 09 09 09 69 66 20 28 63 75 74 6f 75 74 5b 79 5d ...if (cutout[y]
0280: 5b 78 5d 20 3d 3d 20 27 23 27 29 0d 0a 09 09 09 [x] == '#').....
0290: 09 09 68 61 73 5f 62 6c 61 63 6b 20 3d 20 74 72 ..has_black = tr
02a0: 75 65 3b 0d 0a 09 09 69 66 20 28 21 68 61 73 5f ue;....if (!has_
02b0: 62 6c 61 63 6b 29 0d 0a 09 09 09 72 65 74 75 72 black).....retur
02c0: 6e 20 31 3b 0d 0a 0d 0a 09 09 69 6e 74 20 79 6d n 1;......int ym
02d0: 20 3d 20 59 2c 20 78 6d 20 3d 20 58 2c 20 79 4d = Y, xm = X, yM
02e0: 20 3d 20 30 2c 20 78 4d 20 3d 20 30 3b 0d 0a 09 = 0, xM = 0;...
02f0: 09 66 6f 72 20 28 69 6e 74 20 79 20 3d 20 30 3b .for (int y = 0;
0300: 20 79 20 3c 20 59 3b 20 2b 2b 79 29 0d 0a 09 09 y < Y; ++y)....
0310: 09 66 6f 72 20 28 69 6e 74 20 78 20 3d 20 30 3b .for (int x = 0;
0320: 20 78 20 3c 20 58 3b 20 2b 2b 78 29 0d 0a 09 09 x < X; ++x)....
0330: 09 09 69 66 20 28 63 75 74 6f 75 74 5b 79 5d 5b ..if (cutout[y][
0340: 78 5d 20 3d 3d 20 27 23 27 29 0d 0a 09 09 09 09 x] == '#')......
0350: 09 79 6d 20 3d 20 6d 69 6e 28 79 6d 2c 20 79 29 .ym = min(ym, y)
0360: 2c 20 79 4d 20 3d 20 6d 61 78 28 79 4d 2c 20 79 , yM = max(yM, y
0370: 29 2c 20 78 6d 20 3d 20 6d 69 6e 28 78 6d 2c 20 ), xm = min(xm,
0380: 78 29 2c 20 78 4d 20 3d 20 6d 61 78 28 78 4d 2c x), xM = max(xM,
0390: 20 78 29 3b 0d 0a 0d 0a 09 09 66 6f 72 20 28 69 x);......for (i
03a0: 6e 74 20 79 20 3d 20 79 6d 3b 20 79 20 3c 3d 20 nt y = ym; y <=
03b0: 79 4d 3b 20 2b 2b 79 29 0d 0a 09 09 09 66 6f 72 yM; ++y).....for
03c0: 20 28 69 6e 74 20 78 20 3d 20 78 6d 3b 20 78 20 (int x = xm; x
03d0: 3c 3d 20 78 4d 3b 20 2b 2b 78 29 0d 0a 09 09 09 <= xM; ++x).....
03e0: 09 69 66 20 28 63 75 74 6f 75 74 5b 79 5d 5b 78 .if (cutout[y][x
03f0: 5d 20 21 3d 20 27 23 27 29 0d 0a 09 09 09 09 09 ] != '#').......
0400: 72 65 74 75 72 6e 20 30 3b 0d 0a 0d 0a 09 09 62 return 0;......b
0410: 6f 6f 6c 20 78 5f 65 78 74 65 6e 64 61 62 6c 65 ool x_extendable
0420: 20 3d 20 28 78 6d 20 3d 3d 20 30 20 7c 7c 20 78 = (xm == 0 || x
0430: 4d 20 3d 3d 20 58 20 2d 20 31 29 3b 0d 0a 09 09 M == X - 1);....
0440: 62 6f 6f 6c 20 79 5f 65 78 74 65 6e 64 61 62 6c bool y_extendabl
0450: 65 20 3d 20 28 79 6d 20 3d 3d 20 30 20 7c 7c 20 e = (ym == 0 ||
0460: 79 4d 20 3d 3d 20 59 20 2d 20 31 29 3b 0d 0a 09 yM == Y - 1);...
0470: 09 69 6e 74 20 79 79 20 3d 20 79 4d 20 2d 20 79 .int yy = yM - y
0480: 6d 20 2b 20 31 3b 0d 0a 09 09 69 6e 74 20 78 78 m + 1;....int xx
0490: 20 3d 20 78 4d 20 2d 20 78 6d 20 2b 20 31 3b 0d = xM - xm + 1;.
04a0: 0a 09 09 69 66 20 28 79 79 20 3d 3d 20 78 78 29 ...if (yy == xx)
04b0: 0d 0a 09 09 09 72 65 74 75 72 6e 20 79 79 3b 0d .....return yy;.
04c0: 0a 09 09 69 66 20 28 79 79 20 3c 20 78 78 29 0d ...if (yy < xx).
04d0: 0a 09 09 09 72 65 74 75 72 6e 20 79 5f 65 78 74 ....return y_ext
04e0: 65 6e 64 61 62 6c 65 20 3f 20 78 78 20 3a 20 30 endable ? xx : 0
04f0: 3b 0d 0a 09 09 72 65 74 75 72 6e 20 78 5f 65 78 ;....return x_ex
0500: 74 65 6e 64 61 62 6c 65 20 3f 20 79 79 20 3a 20 tendable ? yy :
0510: 30 3b 0d 0a 09 7d 0d 0a 7d 3b 0d 0a 0d 0a 2f 2f 0;...}..};....//
0520: 20 42 45 47 49 4e 20 43 55 54 20 48 45 52 45 0d BEGIN CUT HERE.
0530: 0a 23 69 6e 63 6c 75 64 65 20 3c 63 74 69 6d 65 .#include <ctime
0540: 3e 0d 0a 64 6f 75 62 6c 65 20 73 74 61 72 74 5f >..double start_
0550: 74 69 6d 65 3b 20 73 74 72 69 6e 67 20 74 69 6d time; string tim
0560: 65 72 28 29 0d 0a 20 7b 20 6f 73 74 72 69 6e 67 er().. { ostring
0570: 73 74 72 65 61 6d 20 6f 73 3b 20 6f 73 20 3c 3c stream os; os <<
0580: 20 22 20 28 22 20 3c 3c 20 69 6e 74 28 28 63 6c " (" << int((cl
0590: 6f 63 6b 28 29 2d 73 74 61 72 74 5f 74 69 6d 65 ock()-start_time
05a0: 29 2f 43 4c 4f 43 4b 53 5f 50 45 52 5f 53 45 43 )/CLOCKS_PER_SEC
05b0: 2a 31 30 30 30 29 20 3c 3c 20 22 20 6d 73 65 63 *1000) << " msec
05c0: 29 22 3b 20 72 65 74 75 72 6e 20 6f 73 2e 73 74 )"; return os.st
05d0: 72 28 29 3b 20 7d 0d 0a 74 65 6d 70 6c 61 74 65 r(); }..template
05e0: 3c 74 79 70 65 6e 61 6d 65 20 54 3e 20 6f 73 74 <typename T> ost
05f0: 72 65 61 6d 26 20 6f 70 65 72 61 74 6f 72 3c 3c ream& operator<<
0600: 28 6f 73 74 72 65 61 6d 26 20 6f 73 2c 20 63 6f (ostream& os, co
0610: 6e 73 74 20 76 65 63 74 6f 72 3c 54 3e 26 20 76 nst vector<T>& v
0620: 29 0d 0a 20 7b 20 6f 73 20 3c 3c 20 22 7b 20 22 ).. { os << "{ "
0630: 3b 0d 0a 20 20 20 66 6f 72 28 74 79 70 65 6e 61 ;.. for(typena
0640: 6d 65 20 76 65 63 74 6f 72 3c 54 3e 3a 3a 63 6f me vector<T>::co
0650: 6e 73 74 5f 69 74 65 72 61 74 6f 72 20 69 74 3d nst_iterator it=
0660: 76 2e 62 65 67 69 6e 28 29 3b 20 69 74 21 3d 76 v.begin(); it!=v
0670: 2e 65 6e 64 28 29 3b 20 2b 2b 69 74 29 0d 0a 20 .end(); ++it)..
0680: 20 20 6f 73 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 os << '\"' <<
0690: 2a 69 74 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 28 *it << '\"' << (
06a0: 69 74 2b 31 3d 3d 76 2e 65 6e 64 28 29 20 3f 20 it+1==v.end() ?
06b0: 22 22 20 3a 20 22 2c 20 22 29 3b 20 6f 73 20 3c "" : ", "); os <
06c0: 3c 20 22 20 7d 22 3b 20 72 65 74 75 72 6e 20 6f < " }"; return o
06d0: 73 3b 20 7d 0d 0a 76 6f 69 64 20 76 65 72 69 66 s; }..void verif
06e0: 79 5f 63 61 73 65 28 63 6f 6e 73 74 20 69 6e 74 y_case(const int
06f0: 26 20 45 78 70 65 63 74 65 64 2c 20 63 6f 6e 73 & Expected, cons
0700: 74 20 69 6e 74 26 20 52 65 63 65 69 76 65 64 29 t int& Received)
0710: 20 7b 0d 0a 20 62 6f 6f 6c 20 6f 6b 20 3d 20 28 {.. bool ok = (
0720: 45 78 70 65 63 74 65 64 20 3d 3d 20 52 65 63 65 Expected == Rece
0730: 69 76 65 64 29 3b 0d 0a 20 69 66 28 6f 6b 29 20 ived);.. if(ok)
0740: 63 65 72 72 20 3c 3c 20 22 50 41 53 53 45 44 22 cerr << "PASSED"
0750: 20 3c 3c 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 << timer() << e
0760: 6e 64 6c 3b 20 20 65 6c 73 65 20 7b 20 63 65 72 ndl; else { cer
0770: 72 20 3c 3c 20 22 46 41 49 4c 45 44 22 20 3c 3c r << "FAILED" <<
0780: 20 74 69 6d 65 72 28 29 20 3c 3c 20 65 6e 64 6c timer() << endl
0790: 3b 0d 0a 20 63 65 72 72 20 3c 3c 20 22 5c 74 6f ;.. cerr << "\to
07a0: 3a 20 5c 22 22 20 3c 3c 20 45 78 70 65 63 74 65 : \"" << Expecte
07b0: 64 20 3c 3c 20 27 5c 22 27 20 3c 3c 20 65 6e 64 d << '\"' << end
07c0: 6c 20 3c 3c 20 22 5c 74 78 3a 20 5c 22 22 20 3c l << "\tx: \"" <
07d0: 3c 20 52 65 63 65 69 76 65 64 20 3c 3c 20 27 5c < Received << '\
07e0: 22 27 20 3c 3c 20 65 6e 64 6c 3b 20 7d 20 7d 0d "' << endl; } }.
07f0: 0a 23 64 65 66 69 6e 65 20 43 41 53 45 28 4e 29 .#define CASE(N)
0800: 20 7b 63 65 72 72 20 3c 3c 20 22 54 65 73 74 20 {cerr << "Test
0810: 43 61 73 65 20 23 22 20 3c 3c 20 4e 20 3c 3c 20 Case #" << N <<
0820: 22 2e 2e 2e 22 20 3c 3c 20 66 6c 75 73 68 3b 20 "..." << flush;
0830: 73 74 61 72 74 5f 74 69 6d 65 3d 63 6c 6f 63 6b start_time=clock
0840: 28 29 3b 0d 0a 23 64 65 66 69 6e 65 20 45 4e 44 ();..#define END
0850: 09 20 76 65 72 69 66 79 5f 63 61 73 65 28 5f 2c . verify_case(_,
0860: 20 53 71 75 61 72 65 43 75 74 6f 75 74 28 29 2e SquareCutout().
0870: 76 65 72 69 66 79 28 63 75 74 6f 75 74 29 29 3b verify(cutout));
0880: 7d 0d 0a 69 6e 74 20 6d 61 69 6e 28 29 7b 0d 0a }..int main(){..
0890: 0d 0a 43 41 53 45 28 30 29 0d 0a 09 73 74 72 69 ..CASE(0)...stri
08a0: 6e 67 20 63 75 74 6f 75 74 5f 5b 5d 20 3d 20 7b ng cutout_[] = {
08b0: 22 2e 2e 2e 2e 2e 22 2c 0d 0a 20 22 2e 2e 23 23 ".....",.. "..##
08c0: 2e 22 2c 0d 0a 20 22 2e 2e 23 23 2e 22 2c 0d 0a .",.. "..##.",..
08d0: 20 22 2e 2e 2e 2e 2e 22 2c 0d 0a 20 22 2e 2e 2e ".....",.. "...
08e0: 2e 2e 22 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 .."};... vector
08f0: 20 3c 73 74 72 69 6e 67 3e 20 63 75 74 6f 75 74 <string> cutout
0900: 28 63 75 74 6f 75 74 5f 2c 20 63 75 74 6f 75 74 (cutout_, cutout
0910: 5f 2b 73 69 7a 65 6f 66 28 63 75 74 6f 75 74 5f _+sizeof(cutout_
0920: 29 2f 73 69 7a 65 6f 66 28 2a 63 75 74 6f 75 74 )/sizeof(*cutout
0930: 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 5f 20 3d 20 _)); ...int _ =
0940: 32 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 31 2; ..END..CASE(1
0950: 29 0d 0a 09 73 74 72 69 6e 67 20 63 75 74 6f 75 )...string cutou
0960: 74 5f 5b 5d 20 3d 20 7b 22 2e 2e 2e 22 2c 0d 0a t_[] = {"...",..
0970: 20 22 2e 2e 2e 22 7d 3b 0d 0a 09 20 20 76 65 63 "..."};... vec
0980: 74 6f 72 20 3c 73 74 72 69 6e 67 3e 20 63 75 74 tor <string> cut
0990: 6f 75 74 28 63 75 74 6f 75 74 5f 2c 20 63 75 74 out(cutout_, cut
09a0: 6f 75 74 5f 2b 73 69 7a 65 6f 66 28 63 75 74 6f out_+sizeof(cuto
09b0: 75 74 5f 29 2f 73 69 7a 65 6f 66 28 2a 63 75 74 ut_)/sizeof(*cut
09c0: 6f 75 74 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 5f out_)); ...int _
09d0: 20 3d 20 31 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 = 1; ..END..CAS
09e0: 45 28 32 29 0d 0a 09 73 74 72 69 6e 67 20 63 75 E(2)...string cu
09f0: 74 6f 75 74 5f 5b 5d 20 3d 20 7b 22 2e 2e 2e 2e tout_[] = {"....
0a00: 2e 22 2c 0d 0a 20 22 2e 23 23 23 2e 22 2c 0d 0a .",.. ".###.",..
0a10: 20 22 2e 23 2e 23 2e 22 2c 0d 0a 20 22 2e 23 23 ".#.#.",.. ".##
0a20: 23 2e 22 2c 0d 0a 20 22 2e 2e 2e 2e 2e 22 7d 3b #.",.. "....."};
0a30: 0d 0a 09 20 20 76 65 63 74 6f 72 20 3c 73 74 72 ... vector <str
0a40: 69 6e 67 3e 20 63 75 74 6f 75 74 28 63 75 74 6f ing> cutout(cuto
0a50: 75 74 5f 2c 20 63 75 74 6f 75 74 5f 2b 73 69 7a ut_, cutout_+siz
0a60: 65 6f 66 28 63 75 74 6f 75 74 5f 29 2f 73 69 7a eof(cutout_)/siz
0a70: 65 6f 66 28 2a 63 75 74 6f 75 74 5f 29 29 3b 20 eof(*cutout_));
0a80: 0d 0a 09 69 6e 74 20 5f 20 3d 20 30 3b 20 0d 0a ...int _ = 0; ..
0a90: 45 4e 44 0d 0a 43 41 53 45 28 33 29 0d 0a 09 73 END..CASE(3)...s
0aa0: 74 72 69 6e 67 20 63 75 74 6f 75 74 5f 5b 5d 20 tring cutout_[]
0ab0: 3d 20 7b 22 2e 2e 23 23 23 23 22 2c 0d 0a 20 22 = {"..####",.. "
0ac0: 2e 2e 23 23 23 23 22 2c 0d 0a 20 22 2e 2e 2e 2e ..####",.. "....
0ad0: 2e 2e 22 7d 3b 0d 0a 09 20 20 76 65 63 74 6f 72 .."};... vector
0ae0: 20 3c 73 74 72 69 6e 67 3e 20 63 75 74 6f 75 74 <string> cutout
0af0: 28 63 75 74 6f 75 74 5f 2c 20 63 75 74 6f 75 74 (cutout_, cutout
0b00: 5f 2b 73 69 7a 65 6f 66 28 63 75 74 6f 75 74 5f _+sizeof(cutout_
0b10: 29 2f 73 69 7a 65 6f 66 28 2a 63 75 74 6f 75 74 )/sizeof(*cutout
0b20: 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 5f 20 3d 20 _)); ...int _ =
0b30: 34 3b 20 0d 0a 45 4e 44 0d 0a 43 41 53 45 28 34 4; ..END..CASE(4
0b40: 29 0d 0a 09 73 74 72 69 6e 67 20 63 75 74 6f 75 )...string cutou
0b50: 74 5f 5b 5d 20 3d 20 7b 22 2e 2e 23 2e 2e 22 2c t_[] = {"..#..",
0b60: 0d 0a 20 22 2e 23 23 23 2e 22 2c 0d 0a 20 22 23 .. ".###.",.. "#
0b70: 23 23 23 23 22 2c 0d 0a 20 22 2e 23 23 23 2e 22 ####",.. ".###."
0b80: 2c 0d 0a 20 22 2e 2e 23 2e 2e 22 7d 3b 0d 0a 09 ,.. "..#.."};...
0b90: 20 20 76 65 63 74 6f 72 20 3c 73 74 72 69 6e 67 vector <string
0ba0: 3e 20 63 75 74 6f 75 74 28 63 75 74 6f 75 74 5f > cutout(cutout_
0bb0: 2c 20 63 75 74 6f 75 74 5f 2b 73 69 7a 65 6f 66 , cutout_+sizeof
0bc0: 28 63 75 74 6f 75 74 5f 29 2f 73 69 7a 65 6f 66 (cutout_)/sizeof
0bd0: 28 2a 63 75 74 6f 75 74 5f 29 29 3b 20 0d 0a 09 (*cutout_)); ...
0be0: 69 6e 74 20 5f 20 3d 20 30 3b 20 0d 0a 45 4e 44 int _ = 0; ..END
0bf0: 0d 0a 43 41 53 45 28 35 29 0d 0a 73 74 72 69 6e ..CASE(5)..strin
0c00: 67 20 63 75 74 6f 75 74 5f 5b 5d 20 3d 20 7b 20 g cutout_[] = {
0c10: 22 2e 2e 2e 22 2c 20 22 2e 2e 2e 22 2c 20 22 2e "...", "...", ".
0c20: 2e 2e 22 20 7d 3b 0d 0a 09 20 20 76 65 63 74 6f .." };... vecto
0c30: 72 20 3c 73 74 72 69 6e 67 3e 20 63 75 74 6f 75 r <string> cutou
0c40: 74 28 63 75 74 6f 75 74 5f 2c 20 63 75 74 6f 75 t(cutout_, cutou
0c50: 74 5f 2b 73 69 7a 65 6f 66 28 63 75 74 6f 75 74 t_+sizeof(cutout
0c60: 5f 29 2f 73 69 7a 65 6f 66 28 2a 63 75 74 6f 75 _)/sizeof(*cutou
0c70: 74 5f 29 29 3b 20 0d 0a 09 69 6e 74 20 5f 20 3d t_)); ...int _ =
0c80: 20 31 3b 20 0d 0a 45 4e 44 0d 0a 2f 2a 0d 0a 43 1; ..END../*..C
0c90: 41 53 45 28 36 29 0d 0a 09 73 74 72 69 6e 67 20 ASE(6)...string
0ca0: 63 75 74 6f 75 74 5f 5b 5d 20 3d 20 3b 0d 0a 09 cutout_[] = ;...
0cb0: 20 20 76 65 63 74 6f 72 20 3c 73 74 72 69 6e 67 vector <string
0cc0: 3e 20 63 75 74 6f 75 74 28 63 75 74 6f 75 74 5f > cutout(cutout_
0cd0: 2c 20 63 75 74 6f 75 74 5f 2b 73 69 7a 65 6f 66 , cutout_+sizeof
0ce0: 28 63 75 74 6f 75 74 5f 29 2f 73 69 7a 65 6f 66 (cutout_)/sizeof
0cf0: 28 2a 63 75 74 6f 75 74 5f 29 29 3b 20 0d 0a 09 (*cutout_)); ...
0d00: 69 6e 74 20 5f 20 3d 20 3b 20 0d 0a 45 4e 44 0d int _ = ; ..END.
0d10: 0a 2a 2f 0d 0a 7d 0d 0a 2f 2f 20 45 4e 44 20 43 .*/..}..// END C
0d20: 55 54 20 48 45 52 45 0d 0a UT HERE..