diff --git a/LibreOJ/2392/2392.cpp b/LibreOJ/2392/2392.cpp new file mode 100644 index 00000000..22a85e2e --- /dev/null +++ b/LibreOJ/2392/2392.cpp @@ -0,0 +1,115 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +const int N = 1e5 + 5; + +int n, k, t; +long long x[N], a[N]; + +bool check(int v) { + for (int i = 1; i <= n; i++) { + a[i] = x[i] - 2ll * v * t * i; + } + + if (a[n] > a[1]) { + return false; + } + + int l = k, r = k; + + for (int i = k - 1; i >= 1; i--) { + if (a[l] - a[i] <= 0) l = i; + } + + for (int i = k + 1; i <= n; i++) { + if (a[i] - a[r] <= 0) r = i; + } + + int l1 = k, r1 = k; + + while (l < l1 || r1 < r) { + int nl = l1, nr = r1; + bool flag = false; + + while (l < nl && a[r1] - a[nl - 1] <= 0) { + if (a[l1] - a[--nl] <= 0) break; + } + + if (nl < l1 && a[l1] - a[nl] <= 0) { + l1 = nl; + flag = true; + } + + while (nr < r && a[nr + 1] - a[l1] <= 0) { + if (a[++nr] - a[r1] <= 0) break; + } + + if (r1 < nr && a[nr] - a[r1] <= 0) { + r1 = nr; + flag = true; + } + + if (!flag) return false; + } + + int l2 = 1, r2 = n; + + while (l2 < l || r < r2) { + int nl = l2, nr = r2; + bool flag = false; + + while (nl < l && a[r2] - a[nl + 1] <= 0) { + if (a[++nl] - a[l2] >= 0) break; + } + + if (l2 < nl && a[nl] - a[l2] >= 0) { + l2 = nl; + flag = true; + } + + while (r < nr && a[nr - 1] - a[l2] <= 0) { + if (a[r2] - a[--nr] >= 0) break; + } + + if (nr < r2 && a[r2] - a[nr] >= 0) { + r2 = nr; + flag = true; + } + + if (!flag) return false; + } + + return true; +} + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + cin >> n >> k >> t; + + for (int i = 1; i <= n; i++) { + cin >> x[i]; + } + + int l = 0, r = 1e9, + res = 0; + + while (l <= r) { + int mid = (l + r) >> 1; + + if (check(mid)) { + r = mid - 1; + res = mid; + } else { + l = mid + 1; + } + } + + cout << res << endl; + + return 0; +} diff --git a/LibreOJ/2392/data/01-01.in b/LibreOJ/2392/data/01-01.in new file mode 100644 index 00000000..40d24487 --- /dev/null +++ b/LibreOJ/2392/data/01-01.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0baa502c831ad727f5dcb89226f3c78c3c86fdf51e4482814fc95950bfa5b5c5 +size 81 diff --git a/LibreOJ/2392/data/01-01.out b/LibreOJ/2392/data/01-01.out new file mode 100644 index 00000000..b1600864 --- /dev/null +++ b/LibreOJ/2392/data/01-01.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188540c4edfc308b8bb8eb4aa393ee606c274e8b4dcfec17473b310499070bac +size 8 diff --git a/LibreOJ/2392/data/01-02.in b/LibreOJ/2392/data/01-02.in new file mode 100644 index 00000000..12de9fbd --- /dev/null +++ b/LibreOJ/2392/data/01-02.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f0d950096aa03da395d44a14d6420aa65489cbda6f83560f0a2fe920bd476d +size 23 diff --git a/LibreOJ/2392/data/01-02.out b/LibreOJ/2392/data/01-02.out new file mode 100644 index 00000000..5b00314e --- /dev/null +++ b/LibreOJ/2392/data/01-02.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731836f0d7373679966736bdc4be8796e536026fefc37b3cad7f0e955dd5c139 +size 8 diff --git a/LibreOJ/2392/data/01-03.in b/LibreOJ/2392/data/01-03.in new file mode 100644 index 00000000..4f725d95 --- /dev/null +++ b/LibreOJ/2392/data/01-03.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf766a62a237623ce2ba25785eee6923590a9bd9268b5243c7a9e4650a58b8a +size 73 diff --git a/LibreOJ/2392/data/01-03.out b/LibreOJ/2392/data/01-03.out new file mode 100644 index 00000000..35e237e8 --- /dev/null +++ b/LibreOJ/2392/data/01-03.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176c2a452927dd9f100cfba8e1ebf206e906236b0ff2a60889a8344148f8fc91 +size 8 diff --git a/LibreOJ/2392/data/01-04.in b/LibreOJ/2392/data/01-04.in new file mode 100644 index 00000000..3316e899 --- /dev/null +++ b/LibreOJ/2392/data/01-04.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04814a3dd34430ff690d32c3060a03eca7477a63a310a250f5593ad2d2082972 +size 163 diff --git a/LibreOJ/2392/data/01-04.out b/LibreOJ/2392/data/01-04.out new file mode 100644 index 00000000..7e3356c3 --- /dev/null +++ b/LibreOJ/2392/data/01-04.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b962f98275f016746b357fd85a747faa165cc62beb31f875ea53f5da30fe40d2 +size 8 diff --git a/LibreOJ/2392/data/01-05.in b/LibreOJ/2392/data/01-05.in new file mode 100644 index 00000000..d95a1b77 --- /dev/null +++ b/LibreOJ/2392/data/01-05.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64214c693eae298cf2949a70b9f74f66fb7f4d2e63c447279bd2fe61f2693dac +size 159 diff --git a/LibreOJ/2392/data/01-05.out b/LibreOJ/2392/data/01-05.out new file mode 100644 index 00000000..6645f143 --- /dev/null +++ b/LibreOJ/2392/data/01-05.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9816fc0dde9faaede8003e5b728cf3485d391975f35aedc59ac76045c3a7fdc +size 8 diff --git a/LibreOJ/2392/data/01-06.in b/LibreOJ/2392/data/01-06.in new file mode 100644 index 00000000..68c2c7e2 --- /dev/null +++ b/LibreOJ/2392/data/01-06.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39cccf00de9948b77f845483793ef4e081e307a3f4aec2a0e465004c02de1eb +size 159 diff --git a/LibreOJ/2392/data/01-06.out b/LibreOJ/2392/data/01-06.out new file mode 100644 index 00000000..a9eb9449 --- /dev/null +++ b/LibreOJ/2392/data/01-06.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc96edb6e9a0dd5d3765c6a26eb31edc5be89ff7b4271b28098bef87e330193 +size 8 diff --git a/LibreOJ/2392/data/01-07.in b/LibreOJ/2392/data/01-07.in new file mode 100644 index 00000000..cdb8085a --- /dev/null +++ b/LibreOJ/2392/data/01-07.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9c4780ed1f8d1398f4ec42963eb275e3d62d99f8351eeeb09df58257c7cd8e +size 159 diff --git a/LibreOJ/2392/data/01-07.out b/LibreOJ/2392/data/01-07.out new file mode 100644 index 00000000..55eb5e94 --- /dev/null +++ b/LibreOJ/2392/data/01-07.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92f9bcce963c4d3848ab1c745126d9b13dba2654cfc9450b693d16a30aea53c +size 8 diff --git a/LibreOJ/2392/data/01-08.in b/LibreOJ/2392/data/01-08.in new file mode 100644 index 00000000..33dcad2a --- /dev/null +++ b/LibreOJ/2392/data/01-08.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bffd5f91e0354a50b4595d699847a6a2fe32f8caa0fd50c9cab650ba53cb8612 +size 162 diff --git a/LibreOJ/2392/data/01-08.out b/LibreOJ/2392/data/01-08.out new file mode 100644 index 00000000..9f2b1673 --- /dev/null +++ b/LibreOJ/2392/data/01-08.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99105316366008974ebe833b55d38482a3f8de2c2a78f130430f53c85459aaf7 +size 8 diff --git a/LibreOJ/2392/data/01-09.in b/LibreOJ/2392/data/01-09.in new file mode 100644 index 00000000..39fbca5f --- /dev/null +++ b/LibreOJ/2392/data/01-09.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04372b5af20dfd3ec63b3ce68c2c182a425c1ad4af4995e28aad23a94e4aa5c6 +size 165 diff --git a/LibreOJ/2392/data/01-09.out b/LibreOJ/2392/data/01-09.out new file mode 100644 index 00000000..bc197d96 --- /dev/null +++ b/LibreOJ/2392/data/01-09.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a9562bb66c29645754d18246d2539216f27de6c2be46e1abd6be54df4affb9 +size 8 diff --git a/LibreOJ/2392/data/01-10.in b/LibreOJ/2392/data/01-10.in new file mode 100644 index 00000000..6272edf2 --- /dev/null +++ b/LibreOJ/2392/data/01-10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da56bc22790cc5b2e5dabe1d1582536b3b67dbd6624df85cf99131a52bdf9979 +size 165 diff --git a/LibreOJ/2392/data/01-10.out b/LibreOJ/2392/data/01-10.out new file mode 100644 index 00000000..576f1cdd --- /dev/null +++ b/LibreOJ/2392/data/01-10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d136df52b658ea7fd5d7be0d7ded1ae7546f34ea2c8dd95a43804639600867b +size 8 diff --git a/LibreOJ/2392/data/01-11.in b/LibreOJ/2392/data/01-11.in new file mode 100644 index 00000000..e55b01b9 --- /dev/null +++ b/LibreOJ/2392/data/01-11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942df9d56755cafcb81b37bdeb363779c0a76ffcc3601849f19a82d96e8d0532 +size 156 diff --git a/LibreOJ/2392/data/01-11.out b/LibreOJ/2392/data/01-11.out new file mode 100644 index 00000000..71db8612 --- /dev/null +++ b/LibreOJ/2392/data/01-11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fef1bd1b41c8e7940c4ed2ea18ec6eca66542365f5feac7a0e1b64ac28fa54 +size 8 diff --git a/LibreOJ/2392/data/01-12.in b/LibreOJ/2392/data/01-12.in new file mode 100644 index 00000000..29f24e6b --- /dev/null +++ b/LibreOJ/2392/data/01-12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90b4d9440778609c3a11781a693f6e39c55b7d5a0c66b44ef3c5be81add5785f +size 141 diff --git a/LibreOJ/2392/data/01-12.out b/LibreOJ/2392/data/01-12.out new file mode 100644 index 00000000..bbc5b7b0 --- /dev/null +++ b/LibreOJ/2392/data/01-12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961137d4c7805919c42a210ce4cfc038ecfa78eb29f7e1096f880ab1c908ff72 +size 7 diff --git a/LibreOJ/2392/data/01-13.in b/LibreOJ/2392/data/01-13.in new file mode 100644 index 00000000..8a7dfb09 --- /dev/null +++ b/LibreOJ/2392/data/01-13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e519ab535db80d9449ae7b2961bbecef522f09e35435f504074a2002746c96cc +size 165 diff --git a/LibreOJ/2392/data/01-13.out b/LibreOJ/2392/data/01-13.out new file mode 100644 index 00000000..6e56d301 --- /dev/null +++ b/LibreOJ/2392/data/01-13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d5c6538aaa72f31eb06f467ddd5e740d3577d3b9c5fd98315ed18b97422376 +size 8 diff --git a/LibreOJ/2392/data/01-14.in b/LibreOJ/2392/data/01-14.in new file mode 100644 index 00000000..b621f821 --- /dev/null +++ b/LibreOJ/2392/data/01-14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb28e29923f6073dc75d5cd4a7e54840352686c37036493cb025b46d9e2838da +size 164 diff --git a/LibreOJ/2392/data/01-14.out b/LibreOJ/2392/data/01-14.out new file mode 100644 index 00000000..f22ce9f3 --- /dev/null +++ b/LibreOJ/2392/data/01-14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b03dea448bb046fc7dc5cd11890be9264e5ec1997ef2ef1931110541e66d853 +size 8 diff --git a/LibreOJ/2392/data/01-15.in b/LibreOJ/2392/data/01-15.in new file mode 100644 index 00000000..5a11954d --- /dev/null +++ b/LibreOJ/2392/data/01-15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f1f855d26145e80263327a67960a334e15be0e5650243339881898a35ebc30 +size 159 diff --git a/LibreOJ/2392/data/01-15.out b/LibreOJ/2392/data/01-15.out new file mode 100644 index 00000000..b7de0f5a --- /dev/null +++ b/LibreOJ/2392/data/01-15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67be730bbd8a80f2fb454f6a35115e4d2844ae9e6011b71dc642db8ba25225f +size 8 diff --git a/LibreOJ/2392/data/01-16.in b/LibreOJ/2392/data/01-16.in new file mode 100644 index 00000000..2137cb0e --- /dev/null +++ b/LibreOJ/2392/data/01-16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23296b24abbb2df07af2f01777e5c16c1d2be7fa00d6ef6ec7c64d377892e922 +size 159 diff --git a/LibreOJ/2392/data/01-16.out b/LibreOJ/2392/data/01-16.out new file mode 100644 index 00000000..26c4925f --- /dev/null +++ b/LibreOJ/2392/data/01-16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27eedbb64b81a3079a5d93e2061ac987580c1bc10f0cb322d257facf9e5bab1a +size 8 diff --git a/LibreOJ/2392/data/01-17.in b/LibreOJ/2392/data/01-17.in new file mode 100644 index 00000000..1bcc3986 --- /dev/null +++ b/LibreOJ/2392/data/01-17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a516ed49108a5883f911cd4b37c1b9252548d7d94d50042cf21d269a7025cab2 +size 149 diff --git a/LibreOJ/2392/data/01-17.out b/LibreOJ/2392/data/01-17.out new file mode 100644 index 00000000..131cd03c --- /dev/null +++ b/LibreOJ/2392/data/01-17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0719baf4321d2ba3e35dd4e5749f868b4563fe3c70423985facf8080df45390e +size 7 diff --git a/LibreOJ/2392/data/01-18.in b/LibreOJ/2392/data/01-18.in new file mode 100644 index 00000000..de9ae32e --- /dev/null +++ b/LibreOJ/2392/data/01-18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7aa4cf49a5de337351f6abfcad6f7465b744369b4d8c49a1154cda66105378b +size 160 diff --git a/LibreOJ/2392/data/01-18.out b/LibreOJ/2392/data/01-18.out new file mode 100644 index 00000000..4b2ff9dc --- /dev/null +++ b/LibreOJ/2392/data/01-18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba1f325ee94fa046f9ac6db1488b67b0f7b10b13fd2bf748fc0952de835b218 +size 8 diff --git a/LibreOJ/2392/data/01-19.in b/LibreOJ/2392/data/01-19.in new file mode 100644 index 00000000..c3c93c30 --- /dev/null +++ b/LibreOJ/2392/data/01-19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf45256796426f53c265c51dc0aac5ae61ab1b636b9d3929609853dea8c1909 +size 47 diff --git a/LibreOJ/2392/data/01-19.out b/LibreOJ/2392/data/01-19.out new file mode 100644 index 00000000..9b23e792 --- /dev/null +++ b/LibreOJ/2392/data/01-19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bf7b3039c63bf5a50491fa3cfd8eb4e699d1ba1436315aef9cbe5711530354 +size 3 diff --git a/LibreOJ/2392/data/01-20.in b/LibreOJ/2392/data/01-20.in new file mode 100644 index 00000000..67bbf203 --- /dev/null +++ b/LibreOJ/2392/data/01-20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1502f30545b2cb509b2afef6ac0f231730cc37ed39145bffcb57eb76562a7557 +size 19 diff --git a/LibreOJ/2392/data/01-20.out b/LibreOJ/2392/data/01-20.out new file mode 100644 index 00000000..985d90cc --- /dev/null +++ b/LibreOJ/2392/data/01-20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1739db0a7c34062597b5c026929c13399ac42ef7abd7f7457d942802a597cf0 +size 10 diff --git a/LibreOJ/2392/data/01-21.in b/LibreOJ/2392/data/01-21.in new file mode 100644 index 00000000..3cf34e10 --- /dev/null +++ b/LibreOJ/2392/data/01-21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2937cdf07a230ede0207b49e8934608dbfbed9b1cf6bb23991db89e25770a7 +size 8 diff --git a/LibreOJ/2392/data/01-21.out b/LibreOJ/2392/data/01-21.out new file mode 100644 index 00000000..804fcc90 --- /dev/null +++ b/LibreOJ/2392/data/01-21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a271f2a916b0b6ee6cecb2426f0b3206ef074578be55d9bc94f6f3fe3ab86aa +size 2 diff --git a/LibreOJ/2392/data/02-01.in b/LibreOJ/2392/data/02-01.in new file mode 100644 index 00000000..02d26b18 --- /dev/null +++ b/LibreOJ/2392/data/02-01.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42defafbc70e6d52d6b854dcd416817d183eded7f1e6dbb2f81adc7d1525fcf0 +size 7643 diff --git a/LibreOJ/2392/data/02-01.out b/LibreOJ/2392/data/02-01.out new file mode 100644 index 00000000..0a28122d --- /dev/null +++ b/LibreOJ/2392/data/02-01.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac2009de4107c4786ac491352e186e24127f02c568f0bb8c82bbf03296150f9 +size 8 diff --git a/LibreOJ/2392/data/02-02.in b/LibreOJ/2392/data/02-02.in new file mode 100644 index 00000000..d290be77 --- /dev/null +++ b/LibreOJ/2392/data/02-02.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1d86f49667c31d540e726399d92431f4cfa5847fba1de3140c3850eaab1db4 +size 6088 diff --git a/LibreOJ/2392/data/02-02.out b/LibreOJ/2392/data/02-02.out new file mode 100644 index 00000000..d2703b98 --- /dev/null +++ b/LibreOJ/2392/data/02-02.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2e6b3bf522173ac8c522b21c1de1d528d52e3448f60b9278268855c75e56ed +size 7 diff --git a/LibreOJ/2392/data/02-03.in b/LibreOJ/2392/data/02-03.in new file mode 100644 index 00000000..60bcc3bf --- /dev/null +++ b/LibreOJ/2392/data/02-03.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc5948b456c7d292fec143334189c46d43ab73cfadbbf022c12e8faf0f9c17fb +size 6953 diff --git a/LibreOJ/2392/data/02-03.out b/LibreOJ/2392/data/02-03.out new file mode 100644 index 00000000..6ab48f13 --- /dev/null +++ b/LibreOJ/2392/data/02-03.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68b8ac263f74b18cc82bf3b9f541b539d8e2bb205075e9d16b1a4881dd09789 +size 7 diff --git a/LibreOJ/2392/data/02-04.in b/LibreOJ/2392/data/02-04.in new file mode 100644 index 00000000..ae0c8cf9 --- /dev/null +++ b/LibreOJ/2392/data/02-04.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8123cf732a66988a91809763cdd05b948e2c1cbd6b601f0adaf47b0562c1e73 +size 9536 diff --git a/LibreOJ/2392/data/02-04.out b/LibreOJ/2392/data/02-04.out new file mode 100644 index 00000000..7e0c2cd5 --- /dev/null +++ b/LibreOJ/2392/data/02-04.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372eeb73d4743382ac97f5fadda2c73b9e68b589b3dfb8aa4f4548962a65ea57 +size 8 diff --git a/LibreOJ/2392/data/02-05.in b/LibreOJ/2392/data/02-05.in new file mode 100644 index 00000000..72f6df26 --- /dev/null +++ b/LibreOJ/2392/data/02-05.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b108d3d314474107189f1d4b5756e726ed137e50ec768a5dc693b403ee6bd196 +size 9446 diff --git a/LibreOJ/2392/data/02-05.out b/LibreOJ/2392/data/02-05.out new file mode 100644 index 00000000..a0ce8b9c --- /dev/null +++ b/LibreOJ/2392/data/02-05.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066dbc895737009d6cb1ee39aac47abf46d1ec76c70311001580001d8da12b30 +size 8 diff --git a/LibreOJ/2392/data/02-06.in b/LibreOJ/2392/data/02-06.in new file mode 100644 index 00000000..83a7989d --- /dev/null +++ b/LibreOJ/2392/data/02-06.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c0b5dcb7e7a230c7ed5c0d789ee87552fecf3b926a3073b7e19a2715bfc535 +size 9692 diff --git a/LibreOJ/2392/data/02-06.out b/LibreOJ/2392/data/02-06.out new file mode 100644 index 00000000..aeed5cae --- /dev/null +++ b/LibreOJ/2392/data/02-06.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735182cbe509d69c0b47096e6d88332a4f88445b3d28ffe7ff88e927bdce974e +size 8 diff --git a/LibreOJ/2392/data/02-07.in b/LibreOJ/2392/data/02-07.in new file mode 100644 index 00000000..43a68f7f --- /dev/null +++ b/LibreOJ/2392/data/02-07.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7afa6ecc9a7f808f895d5984411ea95d9a93f48f06684ff912cf6f4ef9a6da36 +size 9881 diff --git a/LibreOJ/2392/data/02-07.out b/LibreOJ/2392/data/02-07.out new file mode 100644 index 00000000..a57907f2 --- /dev/null +++ b/LibreOJ/2392/data/02-07.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce81f5fbbb345236e5799cde18a1f51eaa02c8ad4a84f8e8257c4728ea0ca375 +size 8 diff --git a/LibreOJ/2392/data/02-08.in b/LibreOJ/2392/data/02-08.in new file mode 100644 index 00000000..64a65f5d --- /dev/null +++ b/LibreOJ/2392/data/02-08.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfc0adf37c3958b328a37bba3fe86f2ba8a85597ab1324b08654ed1fb2c66bd +size 9508 diff --git a/LibreOJ/2392/data/02-08.out b/LibreOJ/2392/data/02-08.out new file mode 100644 index 00000000..6467cc44 --- /dev/null +++ b/LibreOJ/2392/data/02-08.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bed44225db05a9723bd7209bb30af41529ffc3d0868d00a97813b37201bc699 +size 8 diff --git a/LibreOJ/2392/data/02-09.in b/LibreOJ/2392/data/02-09.in new file mode 100644 index 00000000..d89714dd --- /dev/null +++ b/LibreOJ/2392/data/02-09.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5c0754cff23047f518aed34275bd7b9397fb715763c7d2b95b7a9828541cc7 +size 9871 diff --git a/LibreOJ/2392/data/02-09.out b/LibreOJ/2392/data/02-09.out new file mode 100644 index 00000000..caa10ab1 --- /dev/null +++ b/LibreOJ/2392/data/02-09.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b78185c19d293de92383a979d8be542fdc180a8a5fb6cdea924c6993ca232ae +size 8 diff --git a/LibreOJ/2392/data/02-10.in b/LibreOJ/2392/data/02-10.in new file mode 100644 index 00000000..ecb0e1a8 --- /dev/null +++ b/LibreOJ/2392/data/02-10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ee95d7c524bd00dc1876843fbd5f82073a3008313b1dd8e3c50f8db8fc81bd +size 9867 diff --git a/LibreOJ/2392/data/02-10.out b/LibreOJ/2392/data/02-10.out new file mode 100644 index 00000000..573b4dbe --- /dev/null +++ b/LibreOJ/2392/data/02-10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29628aefaf838f0e31cef092bd242bbc481905f13c83080158c29ef1d8a3f830 +size 8 diff --git a/LibreOJ/2392/data/02-11.in b/LibreOJ/2392/data/02-11.in new file mode 100644 index 00000000..f622a409 --- /dev/null +++ b/LibreOJ/2392/data/02-11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7af24118dd9560da185aaff4a1c54f678572eed0595fd72673256b60b20aee3 +size 9650 diff --git a/LibreOJ/2392/data/02-11.out b/LibreOJ/2392/data/02-11.out new file mode 100644 index 00000000..e58b616e --- /dev/null +++ b/LibreOJ/2392/data/02-11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17961a998141c7da1c63250667f179b61d9150b0f00a8c54efdda3e28c7554c +size 8 diff --git a/LibreOJ/2392/data/02-12.in b/LibreOJ/2392/data/02-12.in new file mode 100644 index 00000000..1c2f70e6 --- /dev/null +++ b/LibreOJ/2392/data/02-12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f7d22358fe8710bccbbfd433ec7e1e0d177a5d6d34cfcd552d064776d6f465 +size 9868 diff --git a/LibreOJ/2392/data/02-12.out b/LibreOJ/2392/data/02-12.out new file mode 100644 index 00000000..e274e0d7 --- /dev/null +++ b/LibreOJ/2392/data/02-12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5d80b140fc0347fe3007cc2278af24384afbfd8f395f1544aa3ba4195d621f +size 8 diff --git a/LibreOJ/2392/data/02-13.in b/LibreOJ/2392/data/02-13.in new file mode 100644 index 00000000..3c1a3a94 --- /dev/null +++ b/LibreOJ/2392/data/02-13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b023922c28d3f54b139795b028c93d26ddb12adb3fd072732f300f2e2b41d4f +size 9741 diff --git a/LibreOJ/2392/data/02-13.out b/LibreOJ/2392/data/02-13.out new file mode 100644 index 00000000..99bd3849 --- /dev/null +++ b/LibreOJ/2392/data/02-13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e4a55231390ef95d94dc7b00a046e01c66c43222d0466e1f1a08381e8cda58 +size 8 diff --git a/LibreOJ/2392/data/02-14.in b/LibreOJ/2392/data/02-14.in new file mode 100644 index 00000000..3a366848 --- /dev/null +++ b/LibreOJ/2392/data/02-14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15c07d0f6f308975f76da794ec22bc41c55603a95fc045487ef4a3afb981e62 +size 9856 diff --git a/LibreOJ/2392/data/02-14.out b/LibreOJ/2392/data/02-14.out new file mode 100644 index 00000000..c037be4c --- /dev/null +++ b/LibreOJ/2392/data/02-14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5554254cd00f97b5f38f015ebbfd037831225ad30aa60375492b686e4b19f27c +size 8 diff --git a/LibreOJ/2392/data/02-15.in b/LibreOJ/2392/data/02-15.in new file mode 100644 index 00000000..65192aa0 --- /dev/null +++ b/LibreOJ/2392/data/02-15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51715089cb66c5e0989f20f6c27536ecf04139921bdc41295e39aa9356864a53 +size 9609 diff --git a/LibreOJ/2392/data/02-15.out b/LibreOJ/2392/data/02-15.out new file mode 100644 index 00000000..a886f4b9 --- /dev/null +++ b/LibreOJ/2392/data/02-15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b9929cc59f240d8501f785935df7b92f4528eec8e882a06b073fb4ff41896a +size 8 diff --git a/LibreOJ/2392/data/02-16.in b/LibreOJ/2392/data/02-16.in new file mode 100644 index 00000000..78eed16f --- /dev/null +++ b/LibreOJ/2392/data/02-16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f636c20643fe7e9393c5f8da55350e4d6a77412a6f35a901e9aa804edad00fae +size 8845 diff --git a/LibreOJ/2392/data/02-16.out b/LibreOJ/2392/data/02-16.out new file mode 100644 index 00000000..60355bab --- /dev/null +++ b/LibreOJ/2392/data/02-16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07be4e1306589b252eccdc5bc398c5f04116167fb3e2ce8478516a8c2d943d0d +size 7 diff --git a/LibreOJ/2392/data/02-17.in b/LibreOJ/2392/data/02-17.in new file mode 100644 index 00000000..10953247 --- /dev/null +++ b/LibreOJ/2392/data/02-17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d16f7b276f62245d2b203d33f50fd24b590c2c16d58bd1f15c5906189aa2096 +size 9877 diff --git a/LibreOJ/2392/data/02-17.out b/LibreOJ/2392/data/02-17.out new file mode 100644 index 00000000..a6ccb15a --- /dev/null +++ b/LibreOJ/2392/data/02-17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456180f59a82702263bd323b969f2e3be580494bd0c776516459ccb218d08026 +size 8 diff --git a/LibreOJ/2392/data/02-18.in b/LibreOJ/2392/data/02-18.in new file mode 100644 index 00000000..573fc030 --- /dev/null +++ b/LibreOJ/2392/data/02-18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd59ba32b51b38f0e3f1505f49778fc9d994fa923e6deccd0e8cb686f2f3efb +size 9814 diff --git a/LibreOJ/2392/data/02-18.out b/LibreOJ/2392/data/02-18.out new file mode 100644 index 00000000..3e013384 --- /dev/null +++ b/LibreOJ/2392/data/02-18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1780a29a71627b59647a67711e773faea2da72944bc2d0081754a2d24cb65126 +size 8 diff --git a/LibreOJ/2392/data/02-19.in b/LibreOJ/2392/data/02-19.in new file mode 100644 index 00000000..c6483d64 --- /dev/null +++ b/LibreOJ/2392/data/02-19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95cd53c1118bb59a923a2a1274ecbbd8d2c239ff89170b049f9c3806b54a42d +size 2011 diff --git a/LibreOJ/2392/data/02-19.out b/LibreOJ/2392/data/02-19.out new file mode 100644 index 00000000..9b23e792 --- /dev/null +++ b/LibreOJ/2392/data/02-19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bf7b3039c63bf5a50491fa3cfd8eb4e699d1ba1436315aef9cbe5711530354 +size 3 diff --git a/LibreOJ/2392/data/03-01.in b/LibreOJ/2392/data/03-01.in new file mode 100644 index 00000000..8867778a --- /dev/null +++ b/LibreOJ/2392/data/03-01.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:486e5afe09fc4b4a91b507189027fb31f6498539f095f282e6b45222a80ce303 +size 702815 diff --git a/LibreOJ/2392/data/03-01.out b/LibreOJ/2392/data/03-01.out new file mode 100644 index 00000000..c101e850 --- /dev/null +++ b/LibreOJ/2392/data/03-01.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5160736e420e12188e11caa749992364cce29889463ee1d619e4ea4aa498766 +size 5 diff --git a/LibreOJ/2392/data/03-02.in b/LibreOJ/2392/data/03-02.in new file mode 100644 index 00000000..c9cbfb6d --- /dev/null +++ b/LibreOJ/2392/data/03-02.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad28a18179170336c609bfaf93e326570da9507e570ac470f5ee330d68afd40 +size 21653 diff --git a/LibreOJ/2392/data/03-02.out b/LibreOJ/2392/data/03-02.out new file mode 100644 index 00000000..ce1fc3cb --- /dev/null +++ b/LibreOJ/2392/data/03-02.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f631fe8924c4acd6848df1ad48b772e708257010bc9eb545a2f8e96829ee72 +size 6 diff --git a/LibreOJ/2392/data/03-03.in b/LibreOJ/2392/data/03-03.in new file mode 100644 index 00000000..cc4336d5 --- /dev/null +++ b/LibreOJ/2392/data/03-03.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6296ce933fc5052ce425d0b5c1d52a1111f389bc1f3f339ac96b8997f285ac55 +size 191122 diff --git a/LibreOJ/2392/data/03-03.out b/LibreOJ/2392/data/03-03.out new file mode 100644 index 00000000..5c66b99a --- /dev/null +++ b/LibreOJ/2392/data/03-03.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f14431d8a04675c1f5574794c2cf8cfcce8e38137a8cdaeb9449f89139cd5544 +size 6 diff --git a/LibreOJ/2392/data/03-04.in b/LibreOJ/2392/data/03-04.in new file mode 100644 index 00000000..633b313e --- /dev/null +++ b/LibreOJ/2392/data/03-04.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92194256b625f7be4a28cea5f9967153fdd435ec972cfedd8424c1aeb5a3800 +size 984681 diff --git a/LibreOJ/2392/data/03-04.out b/LibreOJ/2392/data/03-04.out new file mode 100644 index 00000000..c89845c9 --- /dev/null +++ b/LibreOJ/2392/data/03-04.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5658fdb14ef0bedb6b337d038153923b247c21abbcb3a919d5dbca11a4e5d28 +size 6 diff --git a/LibreOJ/2392/data/03-05.in b/LibreOJ/2392/data/03-05.in new file mode 100644 index 00000000..b579c2f9 --- /dev/null +++ b/LibreOJ/2392/data/03-05.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70ef7a7163a8a2f1139005c4a21412db686ab3ffdd8cb6c15d1924242767b3a +size 984640 diff --git a/LibreOJ/2392/data/03-05.out b/LibreOJ/2392/data/03-05.out new file mode 100644 index 00000000..19110da5 --- /dev/null +++ b/LibreOJ/2392/data/03-05.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b9924c35680da93aa29913878ddf1b463a1f2eb16e43bc6f7520355af629fa +size 6 diff --git a/LibreOJ/2392/data/03-06.in b/LibreOJ/2392/data/03-06.in new file mode 100644 index 00000000..ab96d3c2 --- /dev/null +++ b/LibreOJ/2392/data/03-06.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c554b33c849de61ca26adfeb112fd0d1d482d54c496b58ed85595890d4048bc +size 982950 diff --git a/LibreOJ/2392/data/03-06.out b/LibreOJ/2392/data/03-06.out new file mode 100644 index 00000000..6f0a064b --- /dev/null +++ b/LibreOJ/2392/data/03-06.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4c24831a994e4d456463dba5d478db715c6c57ff79f58b92d5b9299cfe4a39 +size 6 diff --git a/LibreOJ/2392/data/03-07.in b/LibreOJ/2392/data/03-07.in new file mode 100644 index 00000000..647be320 --- /dev/null +++ b/LibreOJ/2392/data/03-07.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27dd53acff4a6a8965ad4267f076c90d0dc64910f917cedcf4ff9214e0988787 +size 983426 diff --git a/LibreOJ/2392/data/03-07.out b/LibreOJ/2392/data/03-07.out new file mode 100644 index 00000000..2197f14a --- /dev/null +++ b/LibreOJ/2392/data/03-07.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9221a2a4b0e1ae1d9fe23f37a6b3341eee23bd35a6f40abbbc3edb5e3e1237e2 +size 6 diff --git a/LibreOJ/2392/data/03-08.in b/LibreOJ/2392/data/03-08.in new file mode 100644 index 00000000..b9d44fb6 --- /dev/null +++ b/LibreOJ/2392/data/03-08.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b297b61cc8d2c4f3be9850fa410952a4f0995e8cb68dd8843d936fe20eb65dc1 +size 982521 diff --git a/LibreOJ/2392/data/03-08.out b/LibreOJ/2392/data/03-08.out new file mode 100644 index 00000000..b51a5964 --- /dev/null +++ b/LibreOJ/2392/data/03-08.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2bd33337ee424e86be00536a17ca2359fa046d1db639f2e8dd547a13ec23ac6 +size 6 diff --git a/LibreOJ/2392/data/03-09.in b/LibreOJ/2392/data/03-09.in new file mode 100644 index 00000000..59f1024b --- /dev/null +++ b/LibreOJ/2392/data/03-09.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1989a3f147b2f50b79d231fe9c62061398cd3157c8dbd61778c3c5afa276c679 +size 986711 diff --git a/LibreOJ/2392/data/03-09.out b/LibreOJ/2392/data/03-09.out new file mode 100644 index 00000000..1d166954 --- /dev/null +++ b/LibreOJ/2392/data/03-09.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1f5030db83051bd3128441f1d27df74670ae369a18dcd88b8d58d826cc6cc7 +size 6 diff --git a/LibreOJ/2392/data/03-10.in b/LibreOJ/2392/data/03-10.in new file mode 100644 index 00000000..ace3451e --- /dev/null +++ b/LibreOJ/2392/data/03-10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5958112450cda8a07be5c8255e4dbf784846d3b2e80e1a25d26ab9d2a8964a10 +size 982943 diff --git a/LibreOJ/2392/data/03-10.out b/LibreOJ/2392/data/03-10.out new file mode 100644 index 00000000..ad9459ed --- /dev/null +++ b/LibreOJ/2392/data/03-10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bce978ad41b89a83a2455b456b0ee9d83af088410eb9c03e0cabe1e645c7b9b +size 6 diff --git a/LibreOJ/2392/data/03-11.in b/LibreOJ/2392/data/03-11.in new file mode 100644 index 00000000..60aa9a46 --- /dev/null +++ b/LibreOJ/2392/data/03-11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36898a8e07b36963fb4b0070b67543ed67ed8718f3da4a1d19bb041d38bad04 +size 987970 diff --git a/LibreOJ/2392/data/03-11.out b/LibreOJ/2392/data/03-11.out new file mode 100644 index 00000000..ce997e49 --- /dev/null +++ b/LibreOJ/2392/data/03-11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d9c6b720c16653f9fc83f3e006a11992c78524022890dc1b184fc88473ab04 +size 6 diff --git a/LibreOJ/2392/data/03-12.in b/LibreOJ/2392/data/03-12.in new file mode 100644 index 00000000..85111026 --- /dev/null +++ b/LibreOJ/2392/data/03-12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401601ef508700035dabfa12fed83def0a5d40f76abd0e463e06853d479fb800 +size 987722 diff --git a/LibreOJ/2392/data/03-12.out b/LibreOJ/2392/data/03-12.out new file mode 100644 index 00000000..2b68b6ea --- /dev/null +++ b/LibreOJ/2392/data/03-12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e49711a2e2bf3a2a437cc6c5ea2fd053429075c3fbda117a6be97cb52a23514 +size 6 diff --git a/LibreOJ/2392/data/03-13.in b/LibreOJ/2392/data/03-13.in new file mode 100644 index 00000000..60d06f4c --- /dev/null +++ b/LibreOJ/2392/data/03-13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd0d46549959513baf0dcfba48726fa13ac318eac764b15ff0e5e758b4306ef +size 987753 diff --git a/LibreOJ/2392/data/03-13.out b/LibreOJ/2392/data/03-13.out new file mode 100644 index 00000000..6f3e983a --- /dev/null +++ b/LibreOJ/2392/data/03-13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e8d87c116cb51d4a2d04473efde07883740f99e95e15eaf4a3259363551182 +size 6 diff --git a/LibreOJ/2392/data/03-14.in b/LibreOJ/2392/data/03-14.in new file mode 100644 index 00000000..00bb818b --- /dev/null +++ b/LibreOJ/2392/data/03-14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b45e0bf38022fb4510ded8885e76428ddcac854f75426bb2eb36c4ab26e37b52 +size 982812 diff --git a/LibreOJ/2392/data/03-14.out b/LibreOJ/2392/data/03-14.out new file mode 100644 index 00000000..a05b1fe5 --- /dev/null +++ b/LibreOJ/2392/data/03-14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f08a7271c7bf71096f141de10f718f5e69393d07d7f2e15b3ad32d4c0e9f88 +size 6 diff --git a/LibreOJ/2392/data/03-15.in b/LibreOJ/2392/data/03-15.in new file mode 100644 index 00000000..3051d22b --- /dev/null +++ b/LibreOJ/2392/data/03-15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e046ba35f94b3597de7c212e6a9436d0a91faef1f5908d41da85a249737983 +size 983296 diff --git a/LibreOJ/2392/data/03-15.out b/LibreOJ/2392/data/03-15.out new file mode 100644 index 00000000..92a039d6 --- /dev/null +++ b/LibreOJ/2392/data/03-15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bb337063d91ce1590da605ec1559dee4bd481d786901b5da6172c2f2d1669f +size 6 diff --git a/LibreOJ/2392/data/03-16.in b/LibreOJ/2392/data/03-16.in new file mode 100644 index 00000000..c1c0f408 --- /dev/null +++ b/LibreOJ/2392/data/03-16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eda2bc71afb499bc8eb2b5fce2d624beee0a59fcece46d126fccd803431a638a +size 982275 diff --git a/LibreOJ/2392/data/03-16.out b/LibreOJ/2392/data/03-16.out new file mode 100644 index 00000000..b05da27d --- /dev/null +++ b/LibreOJ/2392/data/03-16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fa7af00b00b62b77e23fa742e325cf734342861d9942892388628e75cc4f30 +size 6 diff --git a/LibreOJ/2392/data/03-17.in b/LibreOJ/2392/data/03-17.in new file mode 100644 index 00000000..06452262 --- /dev/null +++ b/LibreOJ/2392/data/03-17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a6290eae6d51e774473461575b16fd39d14f2d419c9679771aded7ae9738b3 +size 982911 diff --git a/LibreOJ/2392/data/03-17.out b/LibreOJ/2392/data/03-17.out new file mode 100644 index 00000000..7380fe99 --- /dev/null +++ b/LibreOJ/2392/data/03-17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a156a43fae8fcc87f4fd73191e3f213adf5dca3076485de02511a0f28da944 +size 6 diff --git a/LibreOJ/2392/data/03-18.in b/LibreOJ/2392/data/03-18.in new file mode 100644 index 00000000..efaf2a08 --- /dev/null +++ b/LibreOJ/2392/data/03-18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102a41bdb620a6e3d1f3449e7d6111247ccca12d269465eeabb96215ebe7f200 +size 982285 diff --git a/LibreOJ/2392/data/03-18.out b/LibreOJ/2392/data/03-18.out new file mode 100644 index 00000000..5af279d5 --- /dev/null +++ b/LibreOJ/2392/data/03-18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1335f1b107ed3b0568aac779185ea52373d51691e55803721d1767d40a5097c +size 6 diff --git a/LibreOJ/2392/data/03-19.in b/LibreOJ/2392/data/03-19.in new file mode 100644 index 00000000..ec0e0e57 --- /dev/null +++ b/LibreOJ/2392/data/03-19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb468dc038c91a099d97219c0f100c0b0888a9a559b907e47719a3592366b09 +size 200015 diff --git a/LibreOJ/2392/data/03-19.out b/LibreOJ/2392/data/03-19.out new file mode 100644 index 00000000..9b23e792 --- /dev/null +++ b/LibreOJ/2392/data/03-19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bf7b3039c63bf5a50491fa3cfd8eb4e699d1ba1436315aef9cbe5711530354 +size 3 diff --git a/LibreOJ/2392/data/03-20.in b/LibreOJ/2392/data/03-20.in new file mode 100644 index 00000000..09770d09 --- /dev/null +++ b/LibreOJ/2392/data/03-20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c094234f25c9160891c80138fac0c611b51d3cce2661b6c2d0f5e2d4469c8ef9 +size 980505 diff --git a/LibreOJ/2392/data/03-20.out b/LibreOJ/2392/data/03-20.out new file mode 100644 index 00000000..2fb8c568 --- /dev/null +++ b/LibreOJ/2392/data/03-20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e38142232c31713c178f343db10e10d9962eb8dda608f3801e5348b10c66d3 +size 6 diff --git a/LibreOJ/2392/data/03-21.in b/LibreOJ/2392/data/03-21.in new file mode 100644 index 00000000..35a82f31 --- /dev/null +++ b/LibreOJ/2392/data/03-21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a732eebc69c03b2d4af4816557cfe2f0ffb8d56928a308c6821c0b9638e1e2 +size 898909 diff --git a/LibreOJ/2392/data/03-21.out b/LibreOJ/2392/data/03-21.out new file mode 100644 index 00000000..027efe92 --- /dev/null +++ b/LibreOJ/2392/data/03-21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4562d0c58580c5bcb9ee15f400c042b7a5c3aac4522d49e32421ea9eb16dd673 +size 5 diff --git a/LibreOJ/2392/data/03-22.in b/LibreOJ/2392/data/03-22.in new file mode 100644 index 00000000..cf3f5f45 --- /dev/null +++ b/LibreOJ/2392/data/03-22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be8b475c21cd06f9a9a9cfac26781051934e5902b8a4b0cce78fedb77ab5ecb +size 983207 diff --git a/LibreOJ/2392/data/03-22.out b/LibreOJ/2392/data/03-22.out new file mode 100644 index 00000000..c706f006 --- /dev/null +++ b/LibreOJ/2392/data/03-22.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7738392871a6231a4b8a82d486f3f405bd0134f371f0f465f12c6127c29b1090 +size 6 diff --git a/LibreOJ/2392/data/03-23.in b/LibreOJ/2392/data/03-23.in new file mode 100644 index 00000000..18f8200f --- /dev/null +++ b/LibreOJ/2392/data/03-23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc8af87d59c1b1e2aa01bdbbdb6ae0748d51704266333234ba5116db6aa2a26 +size 981601 diff --git a/LibreOJ/2392/data/03-23.out b/LibreOJ/2392/data/03-23.out new file mode 100644 index 00000000..c5b23f35 --- /dev/null +++ b/LibreOJ/2392/data/03-23.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c96fe42f8112e4530392ae07cbe332a5bf4feee9bc35f524f2b5ec3f304295 +size 6 diff --git a/LibreOJ/2392/data/03-24.in b/LibreOJ/2392/data/03-24.in new file mode 100644 index 00000000..4ad2c814 --- /dev/null +++ b/LibreOJ/2392/data/03-24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d562e523b1c80868c2802f0092d4d28d7e0be77d1380451c9ffcacc3f055b7 +size 983602 diff --git a/LibreOJ/2392/data/03-24.out b/LibreOJ/2392/data/03-24.out new file mode 100644 index 00000000..179f464b --- /dev/null +++ b/LibreOJ/2392/data/03-24.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c88cd6fb901ed524d4d9fbb47bc34bd58c029fcbcfd1753e7e513a2d950c29c +size 6 diff --git a/LibreOJ/2392/data/03-25.in b/LibreOJ/2392/data/03-25.in new file mode 100644 index 00000000..33636ebb --- /dev/null +++ b/LibreOJ/2392/data/03-25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87fd8f8b6ce6a9308e15182a65cb76dd6f792f123b261fcc47c1a8ef68a798f6 +size 984304 diff --git a/LibreOJ/2392/data/03-25.out b/LibreOJ/2392/data/03-25.out new file mode 100644 index 00000000..75f3314f --- /dev/null +++ b/LibreOJ/2392/data/03-25.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f60b0e4ae1f4ce2d9b23b292157dbe4e8c08dadd4031d0f71348342cda1e71 +size 6 diff --git a/LibreOJ/2392/data/03-26.in b/LibreOJ/2392/data/03-26.in new file mode 100644 index 00000000..82cc9f36 --- /dev/null +++ b/LibreOJ/2392/data/03-26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51de37d9b38facc1b719f24f3f4d6dc9974683918cbd9e080d0306d6344132d6 +size 955903 diff --git a/LibreOJ/2392/data/03-26.out b/LibreOJ/2392/data/03-26.out new file mode 100644 index 00000000..2c87ca04 --- /dev/null +++ b/LibreOJ/2392/data/03-26.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db8365baf9f5e0b92f162caeb9e15a36d9cfbbf7b8b59f9e4475f11b3bdd0e9f +size 6 diff --git a/LibreOJ/2392/data/03-27.in b/LibreOJ/2392/data/03-27.in new file mode 100644 index 00000000..d10c09ed --- /dev/null +++ b/LibreOJ/2392/data/03-27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ffb8424e16c17d04c38dbeb53c4312a2a9a5ba49cf3f8baaa756e33e903504 +size 982801 diff --git a/LibreOJ/2392/data/03-27.out b/LibreOJ/2392/data/03-27.out new file mode 100644 index 00000000..4a22bbec --- /dev/null +++ b/LibreOJ/2392/data/03-27.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443715556d46608ba575116024da1b79008c4953459b2a457e72a4807d51c98d +size 6 diff --git a/LibreOJ/2392/data/03-28.in b/LibreOJ/2392/data/03-28.in new file mode 100644 index 00000000..c6a4f517 --- /dev/null +++ b/LibreOJ/2392/data/03-28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9fe87806fb0edce529a2adab07b0bc5236cdbf9f3b06989f0a5a5eae05ae1c +size 978902 diff --git a/LibreOJ/2392/data/03-28.out b/LibreOJ/2392/data/03-28.out new file mode 100644 index 00000000..8203c3a2 --- /dev/null +++ b/LibreOJ/2392/data/03-28.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fe6f6d33a088a48628c0d234df9fac7eac23b9224c5b17e6c830a5af8d33d4 +size 6 diff --git a/LibreOJ/2392/data/03-29.in b/LibreOJ/2392/data/03-29.in new file mode 100644 index 00000000..454d4939 --- /dev/null +++ b/LibreOJ/2392/data/03-29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20c6439a7d757d0d49cb57a4c280354810815374e4d36f7e082ade9a9e0de3 +size 967475 diff --git a/LibreOJ/2392/data/03-29.out b/LibreOJ/2392/data/03-29.out new file mode 100644 index 00000000..f1e65468 --- /dev/null +++ b/LibreOJ/2392/data/03-29.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11cd09920c35e1a7dc7130683e19f2becf7678bd732ad012be76faf3395a6f2 +size 6 diff --git a/LibreOJ/2392/data/config.yaml b/LibreOJ/2392/data/config.yaml new file mode 100644 index 00000000..cf100da5 --- /dev/null +++ b/LibreOJ/2392/data/config.yaml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523b202c121f8e4ebf454b664e75e0dbca1320852aa6abfeb728ab831fad38e1 +size 4473 diff --git a/LibreOJ/2392/data/sample-01.in b/LibreOJ/2392/data/sample-01.in new file mode 100644 index 00000000..ba7b51cd --- /dev/null +++ b/LibreOJ/2392/data/sample-01.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001434f2ee6f0d0b10711336912c82fe36d4872a4d1ecdc5f1f31243542f2064 +size 17 diff --git a/LibreOJ/2392/data/sample-01.out b/LibreOJ/2392/data/sample-01.out new file mode 100644 index 00000000..6da6aff2 --- /dev/null +++ b/LibreOJ/2392/data/sample-01.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4e26a04a444901b95afef44e4a96cfae34690fff2ad2c66389c70079cdff2b +size 3 diff --git a/LibreOJ/2392/data/sample-02.in b/LibreOJ/2392/data/sample-02.in new file mode 100644 index 00000000..eeff37d0 --- /dev/null +++ b/LibreOJ/2392/data/sample-02.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c227d8b1d108d5c726fd7126d23cc94ad367265218888b477addbd7aa228bc33 +size 17 diff --git a/LibreOJ/2392/data/sample-02.out b/LibreOJ/2392/data/sample-02.out new file mode 100644 index 00000000..8bc2838d --- /dev/null +++ b/LibreOJ/2392/data/sample-02.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c18a6a8d48da87994c100bbb324c758d413e95f0fa5135bd0738a692b4d56f +size 3 diff --git a/LibreOJ/2392/data/sample-03.in b/LibreOJ/2392/data/sample-03.in new file mode 100644 index 00000000..33db091d --- /dev/null +++ b/LibreOJ/2392/data/sample-03.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edd86dfc11e8dff3ebe4aa81c5d0d706f0856b3de95527ca1c3b9be714dc2a4 +size 75 diff --git a/LibreOJ/2392/data/sample-03.out b/LibreOJ/2392/data/sample-03.out new file mode 100644 index 00000000..ca4cae92 --- /dev/null +++ b/LibreOJ/2392/data/sample-03.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92961e9752250efa971147344b22295db32d7b75e940e0971e5fb34f21d0bc67 +size 3