diff --git a/LibreOJ/149/149.cpp b/LibreOJ/149/149.cpp new file mode 100644 index 00000000..19dfc1f2 --- /dev/null +++ b/LibreOJ/149/149.cpp @@ -0,0 +1,60 @@ +#include +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +const int N = 1e5 + 5; +const double eps = 1e-7; + +int n, k, a[N], b[N]; +double c[N]; + +inline bool check(double mid) { + double sum = 0; + + for (int i = 1; i <= n; i++) { + c[i] = static_cast(a[i]) - mid * b[i]; + } + + std::sort(c + 1, c + 1 + n, std::greater<>()); + + for (int i = 1; i <= k; i++) { + sum += c[i]; + } + + return sum >= 0; +} + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + cin >> n >> k; + + for (int i = 1; i <= n; i++) { + cin >> a[i]; + } + + for (int i = 1; i <= n; i++) { + cin >> b[i]; + } + + double l = 0, r = 1e9; + + while (r - l > eps) { + double mid = (l + r) / 2; + + if (check(mid)) { + l = mid; + } else { + r = mid; + } + } + + cout << std::fixed << std::setprecision(4) << l << endl; + + return 0; +} diff --git a/LibreOJ/149/data/1.in b/LibreOJ/149/data/1.in new file mode 100644 index 00000000..b988959d --- /dev/null +++ b/LibreOJ/149/data/1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42fc1c8065808baad0ea21aa37bfe12545ae9192da4e8e792644f400e8d3ccc +size 1349300 diff --git a/LibreOJ/149/data/1.out b/LibreOJ/149/data/1.out new file mode 100644 index 00000000..b4010bd6 --- /dev/null +++ b/LibreOJ/149/data/1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dce5ab8878e5ae81f123c90498b7e225f1e2412224b990b2e47d1c5dba0342 +size 7 diff --git a/LibreOJ/149/data/10.in b/LibreOJ/149/data/10.in new file mode 100644 index 00000000..4b9cb38f --- /dev/null +++ b/LibreOJ/149/data/10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33fdb0ca4689faa802afb802c27f3692db2c58108c923af7be06e6f818aad45 +size 104690 diff --git a/LibreOJ/149/data/10.out b/LibreOJ/149/data/10.out new file mode 100644 index 00000000..cc7aae9b --- /dev/null +++ b/LibreOJ/149/data/10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a63720d1999f72bd1571dbe6ca3d40db8e78b89205af650d95dedde5996892 +size 7 diff --git a/LibreOJ/149/data/11.in b/LibreOJ/149/data/11.in new file mode 100644 index 00000000..c6b5a47f --- /dev/null +++ b/LibreOJ/149/data/11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f235e47fea3a797f822e23703d00554d23a5709668e5516286a5ae9be8cd68d4 +size 642241 diff --git a/LibreOJ/149/data/11.out b/LibreOJ/149/data/11.out new file mode 100644 index 00000000..99157917 --- /dev/null +++ b/LibreOJ/149/data/11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf8e7939ca0e00ce7a47cf361bfdff9ffebac50c72aa6d1fb5eb66ee5af9ad1 +size 7 diff --git a/LibreOJ/149/data/12.in b/LibreOJ/149/data/12.in new file mode 100644 index 00000000..d3b129c5 --- /dev/null +++ b/LibreOJ/149/data/12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6db5bbf949f5ee192a6f0b6d954bae4530748646820b7f804e8006a6c18d98 +size 731002 diff --git a/LibreOJ/149/data/12.out b/LibreOJ/149/data/12.out new file mode 100644 index 00000000..036a4c52 --- /dev/null +++ b/LibreOJ/149/data/12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b7c4165ff905c2e09035361a8178f615bc3249ff7c58be46aeac211fb80fdd +size 7 diff --git a/LibreOJ/149/data/13.in b/LibreOJ/149/data/13.in new file mode 100644 index 00000000..3aa71f70 --- /dev/null +++ b/LibreOJ/149/data/13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a967247f6256fb3895dee54cce2384ff509dcf48abdfaf0a04e9fabdadd50f86 +size 868320 diff --git a/LibreOJ/149/data/13.out b/LibreOJ/149/data/13.out new file mode 100644 index 00000000..0bf6bc7e --- /dev/null +++ b/LibreOJ/149/data/13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd223488b8d2d1457d1d525a503c4bb102be48341cc7423339b78e429ebe71f7 +size 7 diff --git a/LibreOJ/149/data/14.in b/LibreOJ/149/data/14.in new file mode 100644 index 00000000..6bedffb5 --- /dev/null +++ b/LibreOJ/149/data/14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc070d1da68606ca0f82299121904d8bf8a6572780f7558aae27670942787d2c +size 1064105 diff --git a/LibreOJ/149/data/14.out b/LibreOJ/149/data/14.out new file mode 100644 index 00000000..44df0f75 --- /dev/null +++ b/LibreOJ/149/data/14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211597484d8349d63c82a58c6c33155c77b61e370b9299d2b87b27dd3b49694a +size 7 diff --git a/LibreOJ/149/data/15.in b/LibreOJ/149/data/15.in new file mode 100644 index 00000000..67077dc3 --- /dev/null +++ b/LibreOJ/149/data/15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f8501a9a5e9f3794bdfd3432324e85b0b2063de4cfea6c6cf930dd27162b24 +size 5755 diff --git a/LibreOJ/149/data/15.out b/LibreOJ/149/data/15.out new file mode 100644 index 00000000..fdb19854 --- /dev/null +++ b/LibreOJ/149/data/15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380ffab7aac5e251aee1e78575e5971572be809e0188bcba193e9d7763fb3a77 +size 7 diff --git a/LibreOJ/149/data/16.in b/LibreOJ/149/data/16.in new file mode 100644 index 00000000..9ca654e3 --- /dev/null +++ b/LibreOJ/149/data/16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86a8247f504a2d61b562ab09e3d7b3a87bf82dbd3e54c8f2ef280eb29997e7e +size 133464 diff --git a/LibreOJ/149/data/16.out b/LibreOJ/149/data/16.out new file mode 100644 index 00000000..99533d81 --- /dev/null +++ b/LibreOJ/149/data/16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8a872131c4e2999c8601d840c1d607c2033dfe8900a08ff56a152cc8d164c0 +size 7 diff --git a/LibreOJ/149/data/17.in b/LibreOJ/149/data/17.in new file mode 100644 index 00000000..e9bd804a --- /dev/null +++ b/LibreOJ/149/data/17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2a83ee187feb8b1af677b257a7d77be6ca759206ceac647fc7340b18d58540 +size 1223684 diff --git a/LibreOJ/149/data/17.out b/LibreOJ/149/data/17.out new file mode 100644 index 00000000..4578ce98 --- /dev/null +++ b/LibreOJ/149/data/17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f8f10f669c8672dacf46236984c7882e352b547e135916a4b875641c0223a4 +size 7 diff --git a/LibreOJ/149/data/18.in b/LibreOJ/149/data/18.in new file mode 100644 index 00000000..a718af47 --- /dev/null +++ b/LibreOJ/149/data/18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a11adbf9f93cb9b7632237685717348ef9db632a3760a909bd89b83eacdea06 +size 826415 diff --git a/LibreOJ/149/data/18.out b/LibreOJ/149/data/18.out new file mode 100644 index 00000000..89dd5a57 --- /dev/null +++ b/LibreOJ/149/data/18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc05a6a6434dda5de18409c42d49001f4a5007c26d8bea2ae6261997ad824227 +size 7 diff --git a/LibreOJ/149/data/19.in b/LibreOJ/149/data/19.in new file mode 100644 index 00000000..0efec0bf --- /dev/null +++ b/LibreOJ/149/data/19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e61bff240f1f8998240501e7992712527d26e42d19f37b1afe495c4028356f +size 725744 diff --git a/LibreOJ/149/data/19.out b/LibreOJ/149/data/19.out new file mode 100644 index 00000000..ea1c6dd5 --- /dev/null +++ b/LibreOJ/149/data/19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a72496be1111b66910dced8ec3b71a39ccea3aafe3a670ba2f5e3cd26e2464 +size 7 diff --git a/LibreOJ/149/data/2.in b/LibreOJ/149/data/2.in new file mode 100644 index 00000000..2a202b12 --- /dev/null +++ b/LibreOJ/149/data/2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9d59913a5bc7d11c938637a3e710e21e5d384b7b6e2d896bfc315a2a035d46 +size 839341 diff --git a/LibreOJ/149/data/2.out b/LibreOJ/149/data/2.out new file mode 100644 index 00000000..ed4b5321 --- /dev/null +++ b/LibreOJ/149/data/2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d97d5f08b24ca27b76dc67d13844e4ef6acbf583729438f873c0c75fa275f7a +size 7 diff --git a/LibreOJ/149/data/20.in b/LibreOJ/149/data/20.in new file mode 100644 index 00000000..895fb960 --- /dev/null +++ b/LibreOJ/149/data/20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40883939c4d441627b17e28e3357bcce1b40b29d1f0b6d25bfbdb1dd900b0ca +size 897492 diff --git a/LibreOJ/149/data/20.out b/LibreOJ/149/data/20.out new file mode 100644 index 00000000..e9c0416a --- /dev/null +++ b/LibreOJ/149/data/20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00137a3757741048577678d7ad193b921e83a3a7d2a00030ef23321d86f9f42 +size 7 diff --git a/LibreOJ/149/data/21.in b/LibreOJ/149/data/21.in new file mode 100644 index 00000000..e266244e --- /dev/null +++ b/LibreOJ/149/data/21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ce27212d83b8d99c474acc22d426fc28568d2075d26b5abadb7b38111b248f +size 711412 diff --git a/LibreOJ/149/data/21.out b/LibreOJ/149/data/21.out new file mode 100644 index 00000000..aa158663 --- /dev/null +++ b/LibreOJ/149/data/21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561db24fff0faf28046d36476db0d3f7566fcfb6e5d16ed735f1ef0d87ea190e +size 7 diff --git a/LibreOJ/149/data/22.in b/LibreOJ/149/data/22.in new file mode 100644 index 00000000..142fc08b --- /dev/null +++ b/LibreOJ/149/data/22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ebe36aaa7b8e70260f3751985471e9867224871478170eba3626f17660be495 +size 259843 diff --git a/LibreOJ/149/data/22.out b/LibreOJ/149/data/22.out new file mode 100644 index 00000000..c26cc0d7 --- /dev/null +++ b/LibreOJ/149/data/22.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92de1a7fa9ec6f3cc68cdd6d4a128f6f26eea1c48aaba041966161e357004921 +size 7 diff --git a/LibreOJ/149/data/23.in b/LibreOJ/149/data/23.in new file mode 100644 index 00000000..e21a224b --- /dev/null +++ b/LibreOJ/149/data/23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a45dfae2d5d0cc5ab4de6b67c0d3dd8f1f4e6ff276f69b28962984a837fdde +size 79919 diff --git a/LibreOJ/149/data/23.out b/LibreOJ/149/data/23.out new file mode 100644 index 00000000..2023b4de --- /dev/null +++ b/LibreOJ/149/data/23.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316ceaff9108e11c7600dcec2623432bdd6e9a266b2e1c34b5e92b9e13d09824 +size 7 diff --git a/LibreOJ/149/data/24.in b/LibreOJ/149/data/24.in new file mode 100644 index 00000000..9a60857b --- /dev/null +++ b/LibreOJ/149/data/24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2769e926ce8376d2512f1cac63ef240f5cdfedd03ea566bdbe2a8b69b77d0b9b +size 188347 diff --git a/LibreOJ/149/data/24.out b/LibreOJ/149/data/24.out new file mode 100644 index 00000000..cad12325 --- /dev/null +++ b/LibreOJ/149/data/24.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b2f2537062cd8c6df2f091dae12fde11b8e5de8edc84cb672f3854a7442a97 +size 7 diff --git a/LibreOJ/149/data/25.in b/LibreOJ/149/data/25.in new file mode 100644 index 00000000..d60864ae --- /dev/null +++ b/LibreOJ/149/data/25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9868cd3eb0c070b4c3c781d8673c6440446da713de81e91dabee45ecfe324c1 +size 276301 diff --git a/LibreOJ/149/data/25.out b/LibreOJ/149/data/25.out new file mode 100644 index 00000000..f71afc4f --- /dev/null +++ b/LibreOJ/149/data/25.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce520224f7c3b0a3610a43a1200982ff9e7533034920ab4595f9cb40d4806de0 +size 7 diff --git a/LibreOJ/149/data/26.in b/LibreOJ/149/data/26.in new file mode 100644 index 00000000..646eb6da --- /dev/null +++ b/LibreOJ/149/data/26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de71e946117c614222b45ecfe3c0e5673c4878cda82da988c654ead389e75ac9 +size 779966 diff --git a/LibreOJ/149/data/26.out b/LibreOJ/149/data/26.out new file mode 100644 index 00000000..c838d3ca --- /dev/null +++ b/LibreOJ/149/data/26.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ececad958f63ec80096ca262e78d79f13fd798b3e234e2df45ef5e54afb1f32 +size 7 diff --git a/LibreOJ/149/data/27.in b/LibreOJ/149/data/27.in new file mode 100644 index 00000000..1904e9b8 --- /dev/null +++ b/LibreOJ/149/data/27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba64e74a253103992df6d87b10820d7b2d21f3a7f4eb621e9b6836662a211de +size 897127 diff --git a/LibreOJ/149/data/27.out b/LibreOJ/149/data/27.out new file mode 100644 index 00000000..d5fc827d --- /dev/null +++ b/LibreOJ/149/data/27.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c16ba2aa2667d8e8d487a86f1e2071cc84cca1c39b10371fa319cc230843a7c +size 7 diff --git a/LibreOJ/149/data/28.in b/LibreOJ/149/data/28.in new file mode 100644 index 00000000..e2cd03ca --- /dev/null +++ b/LibreOJ/149/data/28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769a99f820c4a4b1f17c794ae88ecc7d57e0aa0f83c9fc13bca28098b10e1ba3 +size 4708 diff --git a/LibreOJ/149/data/28.out b/LibreOJ/149/data/28.out new file mode 100644 index 00000000..9d50ffe4 --- /dev/null +++ b/LibreOJ/149/data/28.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414995b8eeedbe9d9441524fc310c7509e08d208520bbb05edb7cb0d1c6d19ca +size 7 diff --git a/LibreOJ/149/data/29.in b/LibreOJ/149/data/29.in new file mode 100644 index 00000000..2dc579f7 --- /dev/null +++ b/LibreOJ/149/data/29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd61050f2307b104959b0de4e674327ca5e929556f2970a1ceb20490fdc4863 +size 1107256 diff --git a/LibreOJ/149/data/29.out b/LibreOJ/149/data/29.out new file mode 100644 index 00000000..7f41f921 --- /dev/null +++ b/LibreOJ/149/data/29.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dee66c1a8f6b76638a1152a070ef646c693258d13468ce1ee1edbad563985d4 +size 7 diff --git a/LibreOJ/149/data/3.in b/LibreOJ/149/data/3.in new file mode 100644 index 00000000..074796ea --- /dev/null +++ b/LibreOJ/149/data/3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd47a60c860eb1691d75abb6b100ec1901a36f36e393adc6d814bacce699d580 +size 954066 diff --git a/LibreOJ/149/data/3.out b/LibreOJ/149/data/3.out new file mode 100644 index 00000000..616dcd4f --- /dev/null +++ b/LibreOJ/149/data/3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4b1786a450e6ae53e4af958b967bfdb306ffb61d8ffbf5e348da3bf65d26a0 +size 7 diff --git a/LibreOJ/149/data/30.in b/LibreOJ/149/data/30.in new file mode 100644 index 00000000..99a51890 --- /dev/null +++ b/LibreOJ/149/data/30.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f9ff832e311724906e888cf748189b8175a79788d7dfe0c13fdacfbd200506 +size 819994 diff --git a/LibreOJ/149/data/30.out b/LibreOJ/149/data/30.out new file mode 100644 index 00000000..854ac1a5 --- /dev/null +++ b/LibreOJ/149/data/30.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45b2d55a20391a43e3bb41a46fc982a71d26790152416c0c6eab6dab2a281d6 +size 7 diff --git a/LibreOJ/149/data/31.in b/LibreOJ/149/data/31.in new file mode 100644 index 00000000..900b36f8 --- /dev/null +++ b/LibreOJ/149/data/31.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e38eecdf330c51e9f9737dc1f43f87dfc770779c83d6d5cc03c42c4875f8977 +size 396222 diff --git a/LibreOJ/149/data/31.out b/LibreOJ/149/data/31.out new file mode 100644 index 00000000..b9770e4a --- /dev/null +++ b/LibreOJ/149/data/31.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5391438d95bcb7deb8da951ba885bc9536eeddf686c6ed6eeb0514120bb6e9 +size 7 diff --git a/LibreOJ/149/data/32.in b/LibreOJ/149/data/32.in new file mode 100644 index 00000000..73839f29 --- /dev/null +++ b/LibreOJ/149/data/32.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635218232af66a6ba1c9c8b0a1a74b1cbe88a2b350183bd5f7576971fae3a061 +size 249631 diff --git a/LibreOJ/149/data/32.out b/LibreOJ/149/data/32.out new file mode 100644 index 00000000..8446471e --- /dev/null +++ b/LibreOJ/149/data/32.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b66c31375123d4477d3094ecc31bfad235842257732e2210434bc37bd9d6677 +size 7 diff --git a/LibreOJ/149/data/33.in b/LibreOJ/149/data/33.in new file mode 100644 index 00000000..3972616d --- /dev/null +++ b/LibreOJ/149/data/33.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af00d2e18410d7b5aee6b27c04aedb21d15b20c2322635074ac1ab388194081d +size 551550 diff --git a/LibreOJ/149/data/33.out b/LibreOJ/149/data/33.out new file mode 100644 index 00000000..642fa03c --- /dev/null +++ b/LibreOJ/149/data/33.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddef47ddd5f1c9ae0c8300282f47c970b7c2fcb14a61bc5d6f13e2226f0a3d2c +size 7 diff --git a/LibreOJ/149/data/34.in b/LibreOJ/149/data/34.in new file mode 100644 index 00000000..fb84b8a2 --- /dev/null +++ b/LibreOJ/149/data/34.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ee479762d594ad7855aa00e6237af820d41f6cc63fe38fd35543e907bbb412 +size 839066 diff --git a/LibreOJ/149/data/34.out b/LibreOJ/149/data/34.out new file mode 100644 index 00000000..a523aed1 --- /dev/null +++ b/LibreOJ/149/data/34.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f312c49dcb6478c1d3d47c62e37a2940072ca643d54c9c85bf7bc0c38ff8130 +size 7 diff --git a/LibreOJ/149/data/35.in b/LibreOJ/149/data/35.in new file mode 100644 index 00000000..b601b013 --- /dev/null +++ b/LibreOJ/149/data/35.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d131297bcbf9b0cfb793f249bf7408f21cd6382fa9069b092eaa049f68e5592 +size 725826 diff --git a/LibreOJ/149/data/35.out b/LibreOJ/149/data/35.out new file mode 100644 index 00000000..a7a9f41a --- /dev/null +++ b/LibreOJ/149/data/35.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c832ec1e28f81b35b4c346f1c84f283cbabdfa6f6f4ae9cf01229a7022732b +size 7 diff --git a/LibreOJ/149/data/36.in b/LibreOJ/149/data/36.in new file mode 100644 index 00000000..b2e0fd28 --- /dev/null +++ b/LibreOJ/149/data/36.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e755b60ee8c094e7582dc82eeb3e140b2660befe30803a51a4169de0fd50bc11 +size 1273818 diff --git a/LibreOJ/149/data/36.out b/LibreOJ/149/data/36.out new file mode 100644 index 00000000..3683b313 --- /dev/null +++ b/LibreOJ/149/data/36.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe2a1fb3bff5af6894e20d00cceaa90aab89b83b8e05752fed907e52a8aa2ad +size 7 diff --git a/LibreOJ/149/data/37.in b/LibreOJ/149/data/37.in new file mode 100644 index 00000000..b1021716 --- /dev/null +++ b/LibreOJ/149/data/37.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5a34bc6bf8c243977a166673684ff0bd8473fcb8a5dda82920dfbe3e105381 +size 129415 diff --git a/LibreOJ/149/data/37.out b/LibreOJ/149/data/37.out new file mode 100644 index 00000000..5dd7af97 --- /dev/null +++ b/LibreOJ/149/data/37.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee5fae68792e4ea9942f94661c450ca7da402859ac578c46efa70203c2eb1ec +size 7 diff --git a/LibreOJ/149/data/38.in b/LibreOJ/149/data/38.in new file mode 100644 index 00000000..b18eb85a --- /dev/null +++ b/LibreOJ/149/data/38.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d419f480ae84564712a5d3ef3f1c57cbd94ef9c646b957b5a42bfaf1ac2426 +size 192247 diff --git a/LibreOJ/149/data/38.out b/LibreOJ/149/data/38.out new file mode 100644 index 00000000..f954220d --- /dev/null +++ b/LibreOJ/149/data/38.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261d3019a84b987dccd5bc4cbaf536d1bf1c64eff7c6cf9613a31f4e7bb4812d +size 7 diff --git a/LibreOJ/149/data/39.in b/LibreOJ/149/data/39.in new file mode 100644 index 00000000..7d98ebce --- /dev/null +++ b/LibreOJ/149/data/39.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0624eec68685f1522024b7bcdea9d619bdd5406494dd0ed0aee6dbacfe17b405 +size 1191823 diff --git a/LibreOJ/149/data/39.out b/LibreOJ/149/data/39.out new file mode 100644 index 00000000..e6a693b0 --- /dev/null +++ b/LibreOJ/149/data/39.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f9bcc77707b16da1b2538dfaee5d24f0cba2f4493dfcab36ee034a0dbef30a +size 7 diff --git a/LibreOJ/149/data/4.in b/LibreOJ/149/data/4.in new file mode 100644 index 00000000..fbb9c9f7 --- /dev/null +++ b/LibreOJ/149/data/4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c1b5bb6947267fa802a7d06616c83e23a09dc3858dc888228ecde95ab7214a +size 1342222 diff --git a/LibreOJ/149/data/4.out b/LibreOJ/149/data/4.out new file mode 100644 index 00000000..f71afc4f --- /dev/null +++ b/LibreOJ/149/data/4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce520224f7c3b0a3610a43a1200982ff9e7533034920ab4595f9cb40d4806de0 +size 7 diff --git a/LibreOJ/149/data/40.in b/LibreOJ/149/data/40.in new file mode 100644 index 00000000..ecd1e4c0 --- /dev/null +++ b/LibreOJ/149/data/40.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55371154365bd277d7442e6f6c45893146a6d3da4d4803ec684077b331532812 +size 1208324 diff --git a/LibreOJ/149/data/40.out b/LibreOJ/149/data/40.out new file mode 100644 index 00000000..0bd3d131 --- /dev/null +++ b/LibreOJ/149/data/40.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487ee508333e5120c3d9858e13650c1fb1bd452931af39d38ce4585b213cf036 +size 7 diff --git a/LibreOJ/149/data/41.in b/LibreOJ/149/data/41.in new file mode 100644 index 00000000..cb561e70 --- /dev/null +++ b/LibreOJ/149/data/41.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a049df416304896ac4193544c76d629f7786cefa292155b9c2938192515abb9b +size 1106191 diff --git a/LibreOJ/149/data/41.out b/LibreOJ/149/data/41.out new file mode 100644 index 00000000..9ed31cd2 --- /dev/null +++ b/LibreOJ/149/data/41.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be2d172cec5328b5796a6c78a51d8e31ee329ba4c106a473e7e4cde5ca7b569 +size 7 diff --git a/LibreOJ/149/data/42.in b/LibreOJ/149/data/42.in new file mode 100644 index 00000000..4a3b18d8 --- /dev/null +++ b/LibreOJ/149/data/42.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9087fb9e6da200ecc77e2944bfc3956f9afebbacea7f25213467b3cc535d5e39 +size 663321 diff --git a/LibreOJ/149/data/42.out b/LibreOJ/149/data/42.out new file mode 100644 index 00000000..1469a322 --- /dev/null +++ b/LibreOJ/149/data/42.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9a5d61f1978a0b71c9d2fdf52f9b4f0698d095762aaec0687a02675fd779bc +size 7 diff --git a/LibreOJ/149/data/43.in b/LibreOJ/149/data/43.in new file mode 100644 index 00000000..7946365c --- /dev/null +++ b/LibreOJ/149/data/43.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe68b80916ce50440ddfd2e7fe3277d0823006ad4128da4cb156963f75c53a15 +size 630984 diff --git a/LibreOJ/149/data/43.out b/LibreOJ/149/data/43.out new file mode 100644 index 00000000..69624355 --- /dev/null +++ b/LibreOJ/149/data/43.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b3da21fbfd25c8e537eb929fb92fd1accb1dba869b3112bc256926ffefb67a +size 7 diff --git a/LibreOJ/149/data/44.in b/LibreOJ/149/data/44.in new file mode 100644 index 00000000..a8013097 --- /dev/null +++ b/LibreOJ/149/data/44.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b54bbb1b14d7e9ea81525765996315ac350d6c73adb3e154b16a910c3da7b93 +size 1084718 diff --git a/LibreOJ/149/data/44.out b/LibreOJ/149/data/44.out new file mode 100644 index 00000000..d3fb3d78 --- /dev/null +++ b/LibreOJ/149/data/44.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0397f6c366ceca177c0a781aaf9e65b810fac8742f971c1613152eaefd696459 +size 7 diff --git a/LibreOJ/149/data/45.in b/LibreOJ/149/data/45.in new file mode 100644 index 00000000..6460f948 --- /dev/null +++ b/LibreOJ/149/data/45.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b324b8eda70f23296709a140df9072f20f265fc14efe426637db7ba8e346b98 +size 974265 diff --git a/LibreOJ/149/data/45.out b/LibreOJ/149/data/45.out new file mode 100644 index 00000000..44df0f75 --- /dev/null +++ b/LibreOJ/149/data/45.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211597484d8349d63c82a58c6c33155c77b61e370b9299d2b87b27dd3b49694a +size 7 diff --git a/LibreOJ/149/data/46.in b/LibreOJ/149/data/46.in new file mode 100644 index 00000000..424e8ce4 --- /dev/null +++ b/LibreOJ/149/data/46.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442c671f4a8f07ee7b648d28bf23524b6eb2415d8c318f7d697af3710c99f5e6 +size 584688 diff --git a/LibreOJ/149/data/46.out b/LibreOJ/149/data/46.out new file mode 100644 index 00000000..4afe252b --- /dev/null +++ b/LibreOJ/149/data/46.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6411c7a708356841891e7e8cb5be28efbfade4ef70f2eeaba49aea4e7c4ae31 +size 7 diff --git a/LibreOJ/149/data/47.in b/LibreOJ/149/data/47.in new file mode 100644 index 00000000..06705515 --- /dev/null +++ b/LibreOJ/149/data/47.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5081bf1156fc0bde9239b5102125d34b85302e1a8ec3165d8dbf723cbe0f29 +size 928463 diff --git a/LibreOJ/149/data/47.out b/LibreOJ/149/data/47.out new file mode 100644 index 00000000..684bb512 --- /dev/null +++ b/LibreOJ/149/data/47.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1618916232a5115eb4d62535bbd50c6d6f91f2f5c5fdf7b4ee1abce0873cf29 +size 7 diff --git a/LibreOJ/149/data/48.in b/LibreOJ/149/data/48.in new file mode 100644 index 00000000..7f3c6f4c --- /dev/null +++ b/LibreOJ/149/data/48.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b5a7d02170c038a21ba96f81c33bc88e19df84477e46fc4a6249d0d7abdc5e +size 303438 diff --git a/LibreOJ/149/data/48.out b/LibreOJ/149/data/48.out new file mode 100644 index 00000000..53aa6157 --- /dev/null +++ b/LibreOJ/149/data/48.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658ff29eacfaf784922cc5ce08585bee1f5c52fa347b46b03c3862a02c689957 +size 7 diff --git a/LibreOJ/149/data/49.in b/LibreOJ/149/data/49.in new file mode 100644 index 00000000..cd1cf025 --- /dev/null +++ b/LibreOJ/149/data/49.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d228c3265115b598d961effd56753dc8c96b5937e1e4e36a73f76e54af98e6 +size 1331420 diff --git a/LibreOJ/149/data/49.out b/LibreOJ/149/data/49.out new file mode 100644 index 00000000..2b58ac59 --- /dev/null +++ b/LibreOJ/149/data/49.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098dabe90efc1d27720c4580c88bcb90638925ec43a532ac3a027a45c1d030f4 +size 7 diff --git a/LibreOJ/149/data/5.in b/LibreOJ/149/data/5.in new file mode 100644 index 00000000..8b47bb1b --- /dev/null +++ b/LibreOJ/149/data/5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c129499059baac37e753bac7c97c095f543fa071e092040e71aa6f9f2492d0db +size 320512 diff --git a/LibreOJ/149/data/5.out b/LibreOJ/149/data/5.out new file mode 100644 index 00000000..108335be --- /dev/null +++ b/LibreOJ/149/data/5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e989f06f819c9685aef55845acc37166b45f9c6464c63d4f80b3b1683987d4 +size 7 diff --git a/LibreOJ/149/data/50.in b/LibreOJ/149/data/50.in new file mode 100644 index 00000000..f0db1adb --- /dev/null +++ b/LibreOJ/149/data/50.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:921d37e7490c5af63d85b3f56f53f6ad85a68e0f6924d6474dbfe07069ae5a2d +size 952407 diff --git a/LibreOJ/149/data/50.out b/LibreOJ/149/data/50.out new file mode 100644 index 00000000..95ced0ed --- /dev/null +++ b/LibreOJ/149/data/50.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db289dccd16fbf1cf360ab0ae6c78d3afb5e3e008108e650c63c8987b620158b +size 7 diff --git a/LibreOJ/149/data/6.in b/LibreOJ/149/data/6.in new file mode 100644 index 00000000..5ef63c5d --- /dev/null +++ b/LibreOJ/149/data/6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c87dca0307909aff5019293039581700253e4e87cac484f63afff7fbc065d61 +size 391503 diff --git a/LibreOJ/149/data/6.out b/LibreOJ/149/data/6.out new file mode 100644 index 00000000..5e7e11bc --- /dev/null +++ b/LibreOJ/149/data/6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6775c365be80706987b969577afef211d9ae9ffb112b4089884801037bcb601 +size 7 diff --git a/LibreOJ/149/data/7.in b/LibreOJ/149/data/7.in new file mode 100644 index 00000000..7d797e2c --- /dev/null +++ b/LibreOJ/149/data/7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6c0b3430d079e674ce009fa61c8430931970e7c216ffd7234b8d6cf59a6576 +size 923252 diff --git a/LibreOJ/149/data/7.out b/LibreOJ/149/data/7.out new file mode 100644 index 00000000..32ed5710 --- /dev/null +++ b/LibreOJ/149/data/7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4728a6b262275664d5cc814b0ab09c79011e695b8ad19e2954f8f81037b711ec +size 7 diff --git a/LibreOJ/149/data/8.in b/LibreOJ/149/data/8.in new file mode 100644 index 00000000..2d9b8aae --- /dev/null +++ b/LibreOJ/149/data/8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f04eea18e2eb676fe51b25500cb973a73bc267528cb27e288a61b629da7ad5 +size 33876 diff --git a/LibreOJ/149/data/8.out b/LibreOJ/149/data/8.out new file mode 100644 index 00000000..c0bec0bb --- /dev/null +++ b/LibreOJ/149/data/8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5b8d6fcbaa1c06e4e5918b1f76b0193ebd324d84c70c59731ac0aff3bacd5f +size 7 diff --git a/LibreOJ/149/data/9.in b/LibreOJ/149/data/9.in new file mode 100644 index 00000000..8ac7d920 --- /dev/null +++ b/LibreOJ/149/data/9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4de250d13af37f8781bcb01cdeac4146d91957b467b9e5b616924d2caaf4b9 +size 736453 diff --git a/LibreOJ/149/data/9.out b/LibreOJ/149/data/9.out new file mode 100644 index 00000000..1b3014c4 --- /dev/null +++ b/LibreOJ/149/data/9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472430976b1cdee31c1e30c12a5619ece13b06d2083d116929f7733b986043c5 +size 7