diff --git a/S2OJ/1547/1547.cpp b/S2OJ/1547/1547.cpp new file mode 100644 index 00000000..c41c384e --- /dev/null +++ b/S2OJ/1547/1547.cpp @@ -0,0 +1,85 @@ +#include +#include +#include +#include +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +const int N = 5e5 + 5; +const long long INF = 1e18; + +int n, m, w[N]; +long long f[N][2]; +std::vector g[N]; + +void dfs(int u, int fa) { + int k = g[u].size() / 2 + 1; + long long res = 0; + std::vector a; + + for (int v : g[u]) { + if (v == fa) continue; + + dfs(v, u); + + if (w[v] <= w[u]) { + a.emplace_back(std::max(f[v][0] + w[v], f[v][1] + w[u]) - f[v][1] - m); + res += f[v][1] + m; + } else { + a.emplace_back(f[v][0] + w[u] - std::max(f[v][0] + w[v], f[v][1] + m)); + res += std::max(f[v][0] + w[v], f[v][1] + m); + } + } + + std::sort(a.begin(), a.end(), std::greater<>()); + + if (k - 1 > a.size()) { + f[u][0] = -INF; + } else { + long long sum = res; + + for (int i = 0; i < k - 1; i++) sum += a[i]; + for (int i = k - 1; i < a.size(); i++) sum += std::max(0ll, a[i]); + + f[u][0] = sum; + } + + if (k > a.size()) { + f[u][1] = -INF; + } else { + long long sum = res; + + for (int i = 0; i < k; i++) sum += a[i]; + for (int i = k; i < a.size(); i++) sum += std::max(0ll, a[i]); + + f[u][1] = sum; + } +} + +int main() { + std::ios::sync_with_stdio(false); + cin.tie(nullptr); + + cin >> n >> m; + + for (int i = 1; i <= n; i++) { + cin >> w[i]; + } + + for (int i = 1, u, v; i < n; i++) { + cin >> u >> v; + + g[u].emplace_back(v); + g[v].emplace_back(u); + } + + dfs(1, 1); + + cout << f[1][1] << endl; + + return 0; +} diff --git a/S2OJ/1547/data/data1.in b/S2OJ/1547/data/data1.in new file mode 100644 index 00000000..f25e54c2 --- /dev/null +++ b/S2OJ/1547/data/data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d88e6ed2e03ae7859a192d909f6d9c796ab82dd0c646e0ea88a9aa1f9fbaf39 +size 42 diff --git a/S2OJ/1547/data/data1.out b/S2OJ/1547/data/data1.out new file mode 100644 index 00000000..cb90f684 --- /dev/null +++ b/S2OJ/1547/data/data1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e9d52c1720fca412803e3b07c4b228ff113e303f4c7ab94665319d832bbfb7 +size 2 diff --git a/S2OJ/1547/data/data10.in b/S2OJ/1547/data/data10.in new file mode 100644 index 00000000..2c4adb67 --- /dev/null +++ b/S2OJ/1547/data/data10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb257fe4daf011d8ff3b193c0cb68a5dac5ad0057e9180b04203ba77d6b1410 +size 7777874 diff --git a/S2OJ/1547/data/data10.out b/S2OJ/1547/data/data10.out new file mode 100644 index 00000000..98ebe0db --- /dev/null +++ b/S2OJ/1547/data/data10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86749dd393c81a54056039dffe5fbac08ac340aa9d30cff08903d4aa519ef646 +size 8 diff --git a/S2OJ/1547/data/data11.in b/S2OJ/1547/data/data11.in new file mode 100644 index 00000000..bf83b928 --- /dev/null +++ b/S2OJ/1547/data/data11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cca51cbeb84893c20f284e2a2681ad8f17f66cab0b1bb0406ed7d164eca91b +size 442506 diff --git a/S2OJ/1547/data/data11.out b/S2OJ/1547/data/data11.out new file mode 100644 index 00000000..5eb1b798 --- /dev/null +++ b/S2OJ/1547/data/data11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70c3f21ac4eb4c84ca3a49d7b458a6307cf4ee606da530ecc7fcf560c6bcba9 +size 14 diff --git a/S2OJ/1547/data/data12.in b/S2OJ/1547/data/data12.in new file mode 100644 index 00000000..f968233b --- /dev/null +++ b/S2OJ/1547/data/data12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a7aef5157c3ae5f8fb6811d90967a76c3affe1a4dd47c3f1c558223ae05ae9 +size 11755373 diff --git a/S2OJ/1547/data/data12.out b/S2OJ/1547/data/data12.out new file mode 100644 index 00000000..a5a2020b --- /dev/null +++ b/S2OJ/1547/data/data12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75b544577d3757b2b5e4a313af78b041d301124d64d8c91ec93a6842edca06e +size 16 diff --git a/S2OJ/1547/data/data13.in b/S2OJ/1547/data/data13.in new file mode 100644 index 00000000..801c8f5d --- /dev/null +++ b/S2OJ/1547/data/data13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9802393f431107aa06418da798ecabec3b1e0867817649961a99f02feb001b +size 11678793 diff --git a/S2OJ/1547/data/data13.out b/S2OJ/1547/data/data13.out new file mode 100644 index 00000000..8bd83127 --- /dev/null +++ b/S2OJ/1547/data/data13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48723dd9532e071ef54ebd28ee0ee056ea0092d72b8a4dbb37dbd2425082ddbd +size 15 diff --git a/S2OJ/1547/data/data14.in b/S2OJ/1547/data/data14.in new file mode 100644 index 00000000..01a8c6ae --- /dev/null +++ b/S2OJ/1547/data/data14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee2196aebf7a87579d277ac9213f64ceaf6b8200c71175e0d27f01ac9eedca8 +size 11629792 diff --git a/S2OJ/1547/data/data14.out b/S2OJ/1547/data/data14.out new file mode 100644 index 00000000..6c1bd945 --- /dev/null +++ b/S2OJ/1547/data/data14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b5090e019fc265648e74eb501110855510c07724eda613e189ac0503dc1420e +size 15 diff --git a/S2OJ/1547/data/data15.in b/S2OJ/1547/data/data15.in new file mode 100644 index 00000000..33b95723 --- /dev/null +++ b/S2OJ/1547/data/data15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7185bcde26ec5c336da524f62eec222212f54cabc7e16eac83faa43b902ff783 +size 11250560 diff --git a/S2OJ/1547/data/data15.out b/S2OJ/1547/data/data15.out new file mode 100644 index 00000000..91def0e6 --- /dev/null +++ b/S2OJ/1547/data/data15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d612507172835356252c481c0140f0bf3568fe52225d9f3dc5561e4625d1494e +size 15 diff --git a/S2OJ/1547/data/data16.in b/S2OJ/1547/data/data16.in new file mode 100644 index 00000000..f501e514 --- /dev/null +++ b/S2OJ/1547/data/data16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1771152bfc4b9c379b440148aec71afe928951638dd56d82f95cd20b0028cced +size 1877810 diff --git a/S2OJ/1547/data/data16.out b/S2OJ/1547/data/data16.out new file mode 100644 index 00000000..482839e5 --- /dev/null +++ b/S2OJ/1547/data/data16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8654e6dcb852ed37295b68ee9831debf3dde3a8b0dce6d296cbcbf98f23f3d20 +size 15 diff --git a/S2OJ/1547/data/data17.in b/S2OJ/1547/data/data17.in new file mode 100644 index 00000000..f3e8a23b --- /dev/null +++ b/S2OJ/1547/data/data17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116312003714b1a84e6e82e61de0ac0bf207616cd111acd52b4625126deb4d86 +size 11819793 diff --git a/S2OJ/1547/data/data17.out b/S2OJ/1547/data/data17.out new file mode 100644 index 00000000..72a2554e --- /dev/null +++ b/S2OJ/1547/data/data17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b902408ffc36eb8fce989ea183ea3cfb0a37686559d7df1ab14b33e9747ae4 +size 16 diff --git a/S2OJ/1547/data/data18.in b/S2OJ/1547/data/data18.in new file mode 100644 index 00000000..1f2cafd9 --- /dev/null +++ b/S2OJ/1547/data/data18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb43274c05b81c95b08505dcaac254be8cc34303d49dfcc8cc8a592bd950060 +size 11318096 diff --git a/S2OJ/1547/data/data18.out b/S2OJ/1547/data/data18.out new file mode 100644 index 00000000..18e3ca10 --- /dev/null +++ b/S2OJ/1547/data/data18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b0697d15d4259de11bfbf110add5d0d66f3d16418970ff573520911c88c696 +size 16 diff --git a/S2OJ/1547/data/data19.in b/S2OJ/1547/data/data19.in new file mode 100644 index 00000000..9978a57c --- /dev/null +++ b/S2OJ/1547/data/data19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9269aa2faa71d30b2fc64c6d21d91cf9587139c343032930a2ae9d5b5ba6b8a1 +size 11832995 diff --git a/S2OJ/1547/data/data19.out b/S2OJ/1547/data/data19.out new file mode 100644 index 00000000..0965427d --- /dev/null +++ b/S2OJ/1547/data/data19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310758d8ccd1b18b921487f3c769437ad7139e075d51980669b8f0afa48d0b04 +size 16 diff --git a/S2OJ/1547/data/data2.in b/S2OJ/1547/data/data2.in new file mode 100644 index 00000000..bb1e9e7f --- /dev/null +++ b/S2OJ/1547/data/data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6c3e58f6dc640d422958259fe61773bd6e345fa11d22829a935e7de56c274a +size 48 diff --git a/S2OJ/1547/data/data2.out b/S2OJ/1547/data/data2.out new file mode 100644 index 00000000..c7967cd5 --- /dev/null +++ b/S2OJ/1547/data/data2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d4f2a86deb5e2574bb3210b67bb24fcc4afb19f93a7b65a057daa874a9d18e +size 3 diff --git a/S2OJ/1547/data/data20.in b/S2OJ/1547/data/data20.in new file mode 100644 index 00000000..3a5066c0 --- /dev/null +++ b/S2OJ/1547/data/data20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af1a8c3b9efb00529bc7b4226dc1b179080417668d013a82fac7cab7ad3b40b +size 11677057 diff --git a/S2OJ/1547/data/data20.out b/S2OJ/1547/data/data20.out new file mode 100644 index 00000000..d1b8e96a --- /dev/null +++ b/S2OJ/1547/data/data20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd1b292b619354845fdf6e4490af406dfd4abd474e2ef476a19a63ddc4db6a2 +size 15 diff --git a/S2OJ/1547/data/data21.in b/S2OJ/1547/data/data21.in new file mode 100644 index 00000000..4e881e3f --- /dev/null +++ b/S2OJ/1547/data/data21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8269bbc1b0ced9cfa9630dcedbcd157cb4d625d04dd0587949e391d73d92e21a +size 627 diff --git a/S2OJ/1547/data/data21.out b/S2OJ/1547/data/data21.out new file mode 100644 index 00000000..0a71015a --- /dev/null +++ b/S2OJ/1547/data/data21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ae22d634cadd197cda0736b479fb6deb294d71f604709d7be3549e2de7c708 +size 10 diff --git a/S2OJ/1547/data/data22.in b/S2OJ/1547/data/data22.in new file mode 100644 index 00000000..9564204f --- /dev/null +++ b/S2OJ/1547/data/data22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a54c0a0918b25da652b8e48ebd2d79b4992d6d6bf6a396dd889fe023a20510 +size 1479 diff --git a/S2OJ/1547/data/data22.out b/S2OJ/1547/data/data22.out new file mode 100644 index 00000000..44d9b67b --- /dev/null +++ b/S2OJ/1547/data/data22.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7f73c830933c162885aefe13041feeba02f92718ee317412949c23d63074cd +size 11 diff --git a/S2OJ/1547/data/data23.in b/S2OJ/1547/data/data23.in new file mode 100644 index 00000000..4f52e291 --- /dev/null +++ b/S2OJ/1547/data/data23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c05a4e66c6c6d65695deded5402e93018493d211048593182dd99a1acf54ae +size 1478 diff --git a/S2OJ/1547/data/data23.out b/S2OJ/1547/data/data23.out new file mode 100644 index 00000000..e6a7f493 --- /dev/null +++ b/S2OJ/1547/data/data23.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973a5f754188f1e5b0be14e38223dd40bea7007a25a8f1afebb4cf48d6a8f6ea +size 11 diff --git a/S2OJ/1547/data/data24.in b/S2OJ/1547/data/data24.in new file mode 100644 index 00000000..3c0ec992 --- /dev/null +++ b/S2OJ/1547/data/data24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e37ea0135b20c06a9ac45f153d305009196cc848b4800de6011a2d21c05019 +size 1466 diff --git a/S2OJ/1547/data/data24.out b/S2OJ/1547/data/data24.out new file mode 100644 index 00000000..aeba5854 --- /dev/null +++ b/S2OJ/1547/data/data24.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c30e1f40c3d2a23a2c4f8c6d8ce24f0ad3822bc25348033c7df631da5823865 +size 11 diff --git a/S2OJ/1547/data/data25.in b/S2OJ/1547/data/data25.in new file mode 100644 index 00000000..3a5d3a2d --- /dev/null +++ b/S2OJ/1547/data/data25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b92e71c762079d436f45f2048c5ceacaf714a4abd7f8eca01bfff6a50df91f +size 1457 diff --git a/S2OJ/1547/data/data25.out b/S2OJ/1547/data/data25.out new file mode 100644 index 00000000..4cf1b9e0 --- /dev/null +++ b/S2OJ/1547/data/data25.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afc3a54c48e75da75672f6e6547e05ebbf087667ff3b6aae862aa52dbb3a4ee +size 11 diff --git a/S2OJ/1547/data/data26.in b/S2OJ/1547/data/data26.in new file mode 100644 index 00000000..54487740 --- /dev/null +++ b/S2OJ/1547/data/data26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f02df61f547c96659bc2086561dba5c14a0198d79e43d619c6ec2eee0fb0f2 +size 2973 diff --git a/S2OJ/1547/data/data26.out b/S2OJ/1547/data/data26.out new file mode 100644 index 00000000..c3a10647 --- /dev/null +++ b/S2OJ/1547/data/data26.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59aa5d986599a288c90f360f13759835ee0662ff4a19d7d684c9334e73f0a6af +size 11 diff --git a/S2OJ/1547/data/data27.in b/S2OJ/1547/data/data27.in new file mode 100644 index 00000000..33f0a3cb --- /dev/null +++ b/S2OJ/1547/data/data27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9319d7c20752060cd24c79335a5250bfca8c2d00f81be529eab77f243a2404e +size 3881 diff --git a/S2OJ/1547/data/data27.out b/S2OJ/1547/data/data27.out new file mode 100644 index 00000000..87c8ee25 --- /dev/null +++ b/S2OJ/1547/data/data27.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c09d4a5dc6a3f6560705efe69e6fd0c8784c2eb80b3cc12f71719b3952f143 +size 12 diff --git a/S2OJ/1547/data/data28.in b/S2OJ/1547/data/data28.in new file mode 100644 index 00000000..3ac7b802 --- /dev/null +++ b/S2OJ/1547/data/data28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012311a165a8e063047cfd13e292eafe10223ae3948bce75a05121cb7cdee1cd +size 95742 diff --git a/S2OJ/1547/data/data28.out b/S2OJ/1547/data/data28.out new file mode 100644 index 00000000..ea4de41b --- /dev/null +++ b/S2OJ/1547/data/data28.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61ff06490e83ceb0b5a5125069998e2e7967ae9ae5e38adc9512a7ce1dd0d60 +size 13 diff --git a/S2OJ/1547/data/data29.in b/S2OJ/1547/data/data29.in new file mode 100644 index 00000000..2abb235f --- /dev/null +++ b/S2OJ/1547/data/data29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6169f7f8bb65ec5ace9e4f92ab59d50f1c6caf9eaaaf6d9a0ca0917f3e1aff38 +size 97031 diff --git a/S2OJ/1547/data/data29.out b/S2OJ/1547/data/data29.out new file mode 100644 index 00000000..2c2d8e4a --- /dev/null +++ b/S2OJ/1547/data/data29.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfd9cddaa97c84343b32bbc0f29d0a95750462a8f5d7ddc992288a8185a0d5 +size 14 diff --git a/S2OJ/1547/data/data3.in b/S2OJ/1547/data/data3.in new file mode 100644 index 00000000..681540b9 --- /dev/null +++ b/S2OJ/1547/data/data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b4f40a88baea0a2ff3a8eee4adb3efca4b4eab9c044000dd523399dc67e3c2 +size 48 diff --git a/S2OJ/1547/data/data3.out b/S2OJ/1547/data/data3.out new file mode 100644 index 00000000..ad2c816c --- /dev/null +++ b/S2OJ/1547/data/data3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3840bc236ee03aacbb1ef7d5108ddfa347c59f10b68d4174affbb53140f31273 +size 3 diff --git a/S2OJ/1547/data/data30.in b/S2OJ/1547/data/data30.in new file mode 100644 index 00000000..c69d1ba8 --- /dev/null +++ b/S2OJ/1547/data/data30.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db12459ab32bb06f6e3431c8f63bb1eb977dc75797e912b967f1e1f2561e72eb +size 97039 diff --git a/S2OJ/1547/data/data30.out b/S2OJ/1547/data/data30.out new file mode 100644 index 00000000..49362cf0 --- /dev/null +++ b/S2OJ/1547/data/data30.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1482536f32a25840567133dd6322f0cb9668133b1c0c78d8be61fae0043b5005 +size 14 diff --git a/S2OJ/1547/data/data31.in b/S2OJ/1547/data/data31.in new file mode 100644 index 00000000..fe45f423 --- /dev/null +++ b/S2OJ/1547/data/data31.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a175a6708a3d9f62b0d3c885453e61eeab935f07a5e3c1cc9db7bb147fce090 +size 6036 diff --git a/S2OJ/1547/data/data31.out b/S2OJ/1547/data/data31.out new file mode 100644 index 00000000..084c3480 --- /dev/null +++ b/S2OJ/1547/data/data31.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f7d044dc67c2246dda9f9a32cc584f2dbdcce94be8f27154096457f7f5e1e6 +size 13 diff --git a/S2OJ/1547/data/data32.in b/S2OJ/1547/data/data32.in new file mode 100644 index 00000000..816bff3e --- /dev/null +++ b/S2OJ/1547/data/data32.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec7304b4626fe8583e414fdc973498a742bdd77a450f3d4a23a67f881d0f0a4 +size 10257 diff --git a/S2OJ/1547/data/data32.out b/S2OJ/1547/data/data32.out new file mode 100644 index 00000000..dc615cb1 --- /dev/null +++ b/S2OJ/1547/data/data32.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6943ab2ec1314ef4c6396769f0d6b61ccc1c8bb0648468167542b06ed248ed2 +size 13 diff --git a/S2OJ/1547/data/data33.in b/S2OJ/1547/data/data33.in new file mode 100644 index 00000000..4644d635 --- /dev/null +++ b/S2OJ/1547/data/data33.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a16d798d9149bf57f1b5df2f6ef2d3d16f6309c07d162d04fdc01b8de92852 +size 96701 diff --git a/S2OJ/1547/data/data33.out b/S2OJ/1547/data/data33.out new file mode 100644 index 00000000..511262d6 --- /dev/null +++ b/S2OJ/1547/data/data33.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea6b7e1e8ecf6acb67e6f059df61b43721ff2db50f6ea97bf0229d83791a3a4 +size 14 diff --git a/S2OJ/1547/data/data34.in b/S2OJ/1547/data/data34.in new file mode 100644 index 00000000..7db827bd --- /dev/null +++ b/S2OJ/1547/data/data34.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c1fc33498a935ada7eeb641af6a8fb86d227097617c94cb809a11633b03831 +size 98859 diff --git a/S2OJ/1547/data/data34.out b/S2OJ/1547/data/data34.out new file mode 100644 index 00000000..80f84880 --- /dev/null +++ b/S2OJ/1547/data/data34.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8261710a640e086a62eba07cdaf4d2ee904307b27bb57eb392a8b675d706b96e +size 14 diff --git a/S2OJ/1547/data/data35.in b/S2OJ/1547/data/data35.in new file mode 100644 index 00000000..7b72e3e4 --- /dev/null +++ b/S2OJ/1547/data/data35.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc920a103bd9b6a66410bc2d020f4c6457e40178cbd8260e76b2b3698bba238 +size 91564 diff --git a/S2OJ/1547/data/data35.out b/S2OJ/1547/data/data35.out new file mode 100644 index 00000000..8cefb146 --- /dev/null +++ b/S2OJ/1547/data/data35.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b95a7c94a3846433dd840f114ae101c7cc534b5b929f6945a5ba070cd3042e3 +size 12 diff --git a/S2OJ/1547/data/data36.in b/S2OJ/1547/data/data36.in new file mode 100644 index 00000000..d07c1a35 --- /dev/null +++ b/S2OJ/1547/data/data36.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730de358068ff3eed9c853f363b01381d44ded02a26ae56210463a44d8d488b2 +size 96667 diff --git a/S2OJ/1547/data/data36.out b/S2OJ/1547/data/data36.out new file mode 100644 index 00000000..a752460f --- /dev/null +++ b/S2OJ/1547/data/data36.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2bb64b3e2572d0b4c45b718b82ab3de829996e10be68e17bf1ba0f02e4b9eb +size 14 diff --git a/S2OJ/1547/data/data37.in b/S2OJ/1547/data/data37.in new file mode 100644 index 00000000..28be7710 --- /dev/null +++ b/S2OJ/1547/data/data37.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb9161180f246a09d49e69312327ccec95a8024a2ee1af93e28aa97dc13b138 +size 2163 diff --git a/S2OJ/1547/data/data37.out b/S2OJ/1547/data/data37.out new file mode 100644 index 00000000..d9be13d4 --- /dev/null +++ b/S2OJ/1547/data/data37.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ef872c3b35c6133f3b72a37a90f30f85fcc608071675634f5b7d7cd594a838 +size 12 diff --git a/S2OJ/1547/data/data38.in b/S2OJ/1547/data/data38.in new file mode 100644 index 00000000..734ce76a --- /dev/null +++ b/S2OJ/1547/data/data38.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8a36979bcc935b3926a7265678d2b25ef4ba2b394ecdb1792430f5c685f8f9 +size 11706394 diff --git a/S2OJ/1547/data/data38.out b/S2OJ/1547/data/data38.out new file mode 100644 index 00000000..a93ce9f4 --- /dev/null +++ b/S2OJ/1547/data/data38.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50519c9af9660cd1d899d0ed47790cd674bf6a81010a43ce536b20168dbf7a3c +size 16 diff --git a/S2OJ/1547/data/data39.in b/S2OJ/1547/data/data39.in new file mode 100644 index 00000000..9fe52ded --- /dev/null +++ b/S2OJ/1547/data/data39.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fb37a59ad657566acf775d187076da55da52c0e4a03aecd3efeaab9141f7a2 +size 11685605 diff --git a/S2OJ/1547/data/data39.out b/S2OJ/1547/data/data39.out new file mode 100644 index 00000000..9b9da64d --- /dev/null +++ b/S2OJ/1547/data/data39.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11e36960d882e38c1fe8c172ae74427c1bef969f4145579b5933bac18446781 +size 16 diff --git a/S2OJ/1547/data/data4.in b/S2OJ/1547/data/data4.in new file mode 100644 index 00000000..809c798e --- /dev/null +++ b/S2OJ/1547/data/data4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1cffb9cad429c0063f5531f3c4cb20aa75e0775a1845c8a22ac74df7e4808f +size 48 diff --git a/S2OJ/1547/data/data4.out b/S2OJ/1547/data/data4.out new file mode 100644 index 00000000..2ccf849a --- /dev/null +++ b/S2OJ/1547/data/data4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238903180cc104ec2c5d8b3f20c5bc61b389ec0a967df8cc208cdc7cd454174f +size 3 diff --git a/S2OJ/1547/data/data40.in b/S2OJ/1547/data/data40.in new file mode 100644 index 00000000..5957d92b --- /dev/null +++ b/S2OJ/1547/data/data40.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed752c2fe4d7eb1eb66a2812c1b680c8681ad69cb5146a3e62589184529be22 +size 11700835 diff --git a/S2OJ/1547/data/data40.out b/S2OJ/1547/data/data40.out new file mode 100644 index 00000000..37d6c0a9 --- /dev/null +++ b/S2OJ/1547/data/data40.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e5cc3bd71f6a6b30e1691df1370044b19a53038fbdcfee9d37a9acf675de5b +size 16 diff --git a/S2OJ/1547/data/data41.in b/S2OJ/1547/data/data41.in new file mode 100644 index 00000000..fe45f423 --- /dev/null +++ b/S2OJ/1547/data/data41.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a175a6708a3d9f62b0d3c885453e61eeab935f07a5e3c1cc9db7bb147fce090 +size 6036 diff --git a/S2OJ/1547/data/data41.out b/S2OJ/1547/data/data41.out new file mode 100644 index 00000000..084c3480 --- /dev/null +++ b/S2OJ/1547/data/data41.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f7d044dc67c2246dda9f9a32cc584f2dbdcce94be8f27154096457f7f5e1e6 +size 13 diff --git a/S2OJ/1547/data/data42.in b/S2OJ/1547/data/data42.in new file mode 100644 index 00000000..b4bc25e4 --- /dev/null +++ b/S2OJ/1547/data/data42.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b19ec3723bd850ab2559500f1786efc41aaa9a43e00f0fb2d0de0f608e8e0b +size 96930 diff --git a/S2OJ/1547/data/data42.out b/S2OJ/1547/data/data42.out new file mode 100644 index 00000000..846bc848 --- /dev/null +++ b/S2OJ/1547/data/data42.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd1f07d435705d26279b284ab17fbdcb3ef76c4cc576c11887c6235ee7d8adf +size 14 diff --git a/S2OJ/1547/data/data43.in b/S2OJ/1547/data/data43.in new file mode 100644 index 00000000..1951e20b --- /dev/null +++ b/S2OJ/1547/data/data43.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a73f166f70d26e42106aea9d69b92addba5cf52f395ad08b7351d65f3478ae +size 11787451 diff --git a/S2OJ/1547/data/data43.out b/S2OJ/1547/data/data43.out new file mode 100644 index 00000000..622f255b --- /dev/null +++ b/S2OJ/1547/data/data43.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238f95d2247a055c4a2692447a4b93ab5dc6740bf57f87dce5248ad45ed0613e +size 16 diff --git a/S2OJ/1547/data/data44.in b/S2OJ/1547/data/data44.in new file mode 100644 index 00000000..76773fcf --- /dev/null +++ b/S2OJ/1547/data/data44.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f70b9e353af45b681a7623e8cf672b8f0bf4c026f44aaf4db014148b90ccb15 +size 11366856 diff --git a/S2OJ/1547/data/data44.out b/S2OJ/1547/data/data44.out new file mode 100644 index 00000000..20414993 --- /dev/null +++ b/S2OJ/1547/data/data44.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d0e73557ee654c105b1ef446fdc9c32f8e79eee7dfca3dbae823ab9dce8160 +size 15 diff --git a/S2OJ/1547/data/data45.in b/S2OJ/1547/data/data45.in new file mode 100644 index 00000000..b89893fb --- /dev/null +++ b/S2OJ/1547/data/data45.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ae6b046ce3a4c90aff88f35191f3c959adae0b32cd92d4d4328a6800bf105b +size 11814833 diff --git a/S2OJ/1547/data/data45.out b/S2OJ/1547/data/data45.out new file mode 100644 index 00000000..93d0cc4a --- /dev/null +++ b/S2OJ/1547/data/data45.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78be991fd17376273a3f397d3fa57491e0868435c39127a96e9234873b524f4 +size 16 diff --git a/S2OJ/1547/data/data46.in b/S2OJ/1547/data/data46.in new file mode 100644 index 00000000..697ecd7c --- /dev/null +++ b/S2OJ/1547/data/data46.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112291bcff31d9440a1638e01819cfe0ef07292dcccd848ac7c1d6715a1393d7 +size 11699721 diff --git a/S2OJ/1547/data/data46.out b/S2OJ/1547/data/data46.out new file mode 100644 index 00000000..512aa2a4 --- /dev/null +++ b/S2OJ/1547/data/data46.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208bced56ea1436fb32ef506d2062f5b9fdbe7e05a6f4444b3f1a0ea3e885921 +size 16 diff --git a/S2OJ/1547/data/data47.in b/S2OJ/1547/data/data47.in new file mode 100644 index 00000000..21fa8a02 --- /dev/null +++ b/S2OJ/1547/data/data47.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2f1f51a59e8f0157ff03953eb048fd7cfba9537b2f540875b0a67e229a31b1 +size 11340126 diff --git a/S2OJ/1547/data/data47.out b/S2OJ/1547/data/data47.out new file mode 100644 index 00000000..712af360 --- /dev/null +++ b/S2OJ/1547/data/data47.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501b34057e761ddeae7af6ed5ea8ce81194b65e58cbd2534ad52bcddf96a60ce +size 15 diff --git a/S2OJ/1547/data/data48.in b/S2OJ/1547/data/data48.in new file mode 100644 index 00000000..a6fddeaf --- /dev/null +++ b/S2OJ/1547/data/data48.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1f6227fe76aa6748b30b9adc5f1525ea3bfa7bc3ecccc77d5ed04aa6ddc96e +size 11883512 diff --git a/S2OJ/1547/data/data48.out b/S2OJ/1547/data/data48.out new file mode 100644 index 00000000..02235568 --- /dev/null +++ b/S2OJ/1547/data/data48.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e1f0240afeb45ebe3e0f69a3c06a98fad712ab094f31bae91b7af24f4cd653 +size 16 diff --git a/S2OJ/1547/data/data49.in b/S2OJ/1547/data/data49.in new file mode 100644 index 00000000..b1b80685 --- /dev/null +++ b/S2OJ/1547/data/data49.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29440246668ebb1d8871c395d3e6be17a3c14f405086d35721c30b6c5c413393 +size 11494840 diff --git a/S2OJ/1547/data/data49.out b/S2OJ/1547/data/data49.out new file mode 100644 index 00000000..835d40c2 --- /dev/null +++ b/S2OJ/1547/data/data49.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36774d59c143f8c2e1083290a8492629c8f63b447e07d927e5cd1f274680b7fe +size 16 diff --git a/S2OJ/1547/data/data5.in b/S2OJ/1547/data/data5.in new file mode 100644 index 00000000..94d55a6d --- /dev/null +++ b/S2OJ/1547/data/data5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305f8693296a59aab43e1bd9f58153a2cc73a04b28e5867b141f69e766660e29 +size 48 diff --git a/S2OJ/1547/data/data5.out b/S2OJ/1547/data/data5.out new file mode 100644 index 00000000..2ccf849a --- /dev/null +++ b/S2OJ/1547/data/data5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238903180cc104ec2c5d8b3f20c5bc61b389ec0a967df8cc208cdc7cd454174f +size 3 diff --git a/S2OJ/1547/data/data50.in b/S2OJ/1547/data/data50.in new file mode 100644 index 00000000..6d7d91e4 --- /dev/null +++ b/S2OJ/1547/data/data50.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22bfee86a0c52a8b1fd6e9913e22946361c35e988f3655a2075226a5d256e18 +size 11883575 diff --git a/S2OJ/1547/data/data50.out b/S2OJ/1547/data/data50.out new file mode 100644 index 00000000..073ddb16 --- /dev/null +++ b/S2OJ/1547/data/data50.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed1c7fcf1b817566a78752900e94d87c56bb61b49c4d9db759007c61f36a876 +size 16 diff --git a/S2OJ/1547/data/data51.in b/S2OJ/1547/data/data51.in new file mode 100644 index 00000000..14d44cd6 --- /dev/null +++ b/S2OJ/1547/data/data51.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf3e725147baca12cfbe590e24be1ee3ed126fd909aa901fdc2df7fe33460ac +size 11692503 diff --git a/S2OJ/1547/data/data51.out b/S2OJ/1547/data/data51.out new file mode 100644 index 00000000..856140a1 --- /dev/null +++ b/S2OJ/1547/data/data51.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01c5d2f2dbc2a23ef5cd6f68256aa78bfcfd8b6bbc12e9305d81c0a2f2c06c2 +size 16 diff --git a/S2OJ/1547/data/data52.in b/S2OJ/1547/data/data52.in new file mode 100644 index 00000000..da6a87df --- /dev/null +++ b/S2OJ/1547/data/data52.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14e4f617fd9a118bb277c82e2713814b5f4f00ac2bdd458c24cd3bc46ccc2bc +size 11628238 diff --git a/S2OJ/1547/data/data52.out b/S2OJ/1547/data/data52.out new file mode 100644 index 00000000..7c18b2c3 --- /dev/null +++ b/S2OJ/1547/data/data52.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71219a32087d0c645beb6acb4cd3552192006bbf4188d20d2e8a27bcea9076e5 +size 15 diff --git a/S2OJ/1547/data/data53.in b/S2OJ/1547/data/data53.in new file mode 100644 index 00000000..ae9873dd --- /dev/null +++ b/S2OJ/1547/data/data53.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07755f01a43ecfb99ccc13a681e987b41c6add8b749ef36b7b433f4e8d07c65 +size 11690156 diff --git a/S2OJ/1547/data/data53.out b/S2OJ/1547/data/data53.out new file mode 100644 index 00000000..5ef9011f --- /dev/null +++ b/S2OJ/1547/data/data53.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0571e62b360577e9e484208e059ca2e27156eb6768c12eb84d10fcac337a8b87 +size 16 diff --git a/S2OJ/1547/data/data54.in b/S2OJ/1547/data/data54.in new file mode 100644 index 00000000..9eba767f --- /dev/null +++ b/S2OJ/1547/data/data54.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff9f844ed502adff5b13d007ceb586cb91e5c47a4b1d6ff77b452267848ebf6 +size 11971932 diff --git a/S2OJ/1547/data/data54.out b/S2OJ/1547/data/data54.out new file mode 100644 index 00000000..917df9f3 --- /dev/null +++ b/S2OJ/1547/data/data54.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bbd434c259656e59f3d195409903bd9e012f5c71134528e4d16c91b7a1de93 +size 16 diff --git a/S2OJ/1547/data/data55.in b/S2OJ/1547/data/data55.in new file mode 100644 index 00000000..b0025ccf --- /dev/null +++ b/S2OJ/1547/data/data55.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1cea0e18d2daa2d27dd0d2a11a88b3e77b8cb3e9f7b8e43e4d48c34fe56ec0 +size 11662092 diff --git a/S2OJ/1547/data/data55.out b/S2OJ/1547/data/data55.out new file mode 100644 index 00000000..e42ded9b --- /dev/null +++ b/S2OJ/1547/data/data55.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf1422d478816b02fafd5e7dfce62d50316681d0fdc6163a79fdfdbc73944cf +size 16 diff --git a/S2OJ/1547/data/data56.in b/S2OJ/1547/data/data56.in new file mode 100644 index 00000000..3b0fcdb7 --- /dev/null +++ b/S2OJ/1547/data/data56.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a185cf1bc8e3e46cac89012701590e4359256e1c1711d7f7ced50c03cd9880af +size 11802672 diff --git a/S2OJ/1547/data/data56.out b/S2OJ/1547/data/data56.out new file mode 100644 index 00000000..5abd2040 --- /dev/null +++ b/S2OJ/1547/data/data56.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e2514ce27c7227d75f83da7d6b8e98746c6db395f227b023cd5ff7ecd8945d +size 16 diff --git a/S2OJ/1547/data/data57.in b/S2OJ/1547/data/data57.in new file mode 100644 index 00000000..2409aada --- /dev/null +++ b/S2OJ/1547/data/data57.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b607bbd32c8be2732346edcd45f32e792714b9142e9f1a792bbef2db8c0d7ac0 +size 11832997 diff --git a/S2OJ/1547/data/data57.out b/S2OJ/1547/data/data57.out new file mode 100644 index 00000000..10261b21 --- /dev/null +++ b/S2OJ/1547/data/data57.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28fe9924bf34f0745ab2fd60d5b8d5c3948ce0ecd0fd39ebce6e91ddcf2ffff5 +size 16 diff --git a/S2OJ/1547/data/data58.in b/S2OJ/1547/data/data58.in new file mode 100644 index 00000000..30875d53 --- /dev/null +++ b/S2OJ/1547/data/data58.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e22c717020ff37b0318fde1bd40a83ec621f65a1f204a3e3760860d05a5cfab +size 11850898 diff --git a/S2OJ/1547/data/data58.out b/S2OJ/1547/data/data58.out new file mode 100644 index 00000000..4ec94627 --- /dev/null +++ b/S2OJ/1547/data/data58.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f5d485d2f246470658572c63a48c48fe4eb6a4bc47c13789c8955a857d9b1e8 +size 16 diff --git a/S2OJ/1547/data/data59.in b/S2OJ/1547/data/data59.in new file mode 100644 index 00000000..a3181468 --- /dev/null +++ b/S2OJ/1547/data/data59.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc31aa31092442d1a8c9e998df06146c8f05b846ab0c7d9a6b62d1948478a98 +size 11834918 diff --git a/S2OJ/1547/data/data59.out b/S2OJ/1547/data/data59.out new file mode 100644 index 00000000..2066f1bb --- /dev/null +++ b/S2OJ/1547/data/data59.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6973e6ae1b8bcd35aad70793f08eea1106cc6cab4ac8232c68f6a5d4a46a4324 +size 16 diff --git a/S2OJ/1547/data/data6.in b/S2OJ/1547/data/data6.in new file mode 100644 index 00000000..8d6d8d17 --- /dev/null +++ b/S2OJ/1547/data/data6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b8897869dcaa6aa81071fc99845085fb7fdb41e1f8745deb3a9e848b2f255d +size 48 diff --git a/S2OJ/1547/data/data6.out b/S2OJ/1547/data/data6.out new file mode 100644 index 00000000..f2baf931 --- /dev/null +++ b/S2OJ/1547/data/data6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10159baf262b43a92d95db59dae1f72c645127301661e0a3ce4e38b295a97c58 +size 2 diff --git a/S2OJ/1547/data/data60.in b/S2OJ/1547/data/data60.in new file mode 100644 index 00000000..b8a39e53 --- /dev/null +++ b/S2OJ/1547/data/data60.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245aab1c753e47da0acbc087fcf00a9a91393141fd1f15879553ba62cb3af3f9 +size 11837301 diff --git a/S2OJ/1547/data/data60.out b/S2OJ/1547/data/data60.out new file mode 100644 index 00000000..588450f1 --- /dev/null +++ b/S2OJ/1547/data/data60.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361442b03597e9b382bee655f7811b7b118180cd566369d5e6d0c4d97506e233 +size 16 diff --git a/S2OJ/1547/data/data7.in b/S2OJ/1547/data/data7.in new file mode 100644 index 00000000..2adbaeb8 --- /dev/null +++ b/S2OJ/1547/data/data7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7598c87cc9e7b06d08ef24e0acae49ab00b681100696f7c8a3134022ab2ffb0 +size 735689 diff --git a/S2OJ/1547/data/data7.out b/S2OJ/1547/data/data7.out new file mode 100644 index 00000000..acbc1bf6 --- /dev/null +++ b/S2OJ/1547/data/data7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78506f0775fb61e88fcd10240bb16db64317ea9256394327b3a079789f8c6ef +size 6 diff --git a/S2OJ/1547/data/data8.in b/S2OJ/1547/data/data8.in new file mode 100644 index 00000000..55e7c677 --- /dev/null +++ b/S2OJ/1547/data/data8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373bbaf976f11a1554751e23d159f40bbd086491b2c2cf25fafd40cbbe41f6cd +size 7777786 diff --git a/S2OJ/1547/data/data8.out b/S2OJ/1547/data/data8.out new file mode 100644 index 00000000..a0ae3a66 --- /dev/null +++ b/S2OJ/1547/data/data8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632b5e4850320e7cda1b587aff8208cb05eca5263b5e43297f10926b7133ab56 +size 8 diff --git a/S2OJ/1547/data/data9.in b/S2OJ/1547/data/data9.in new file mode 100644 index 00000000..f0b208e0 --- /dev/null +++ b/S2OJ/1547/data/data9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5f101f53816f49c100175c69bef6db7348b18ebf2a08f4c04c94ba0f95db45 +size 7777403 diff --git a/S2OJ/1547/data/data9.out b/S2OJ/1547/data/data9.out new file mode 100644 index 00000000..7dccabbc --- /dev/null +++ b/S2OJ/1547/data/data9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8ab2dadfa4d0d4dad01ced9eaf9ebcf7b0f405ab3872938b08f97ac68e980c +size 8 diff --git a/S2OJ/1547/data/ex_data1.in b/S2OJ/1547/data/ex_data1.in new file mode 100644 index 00000000..7e686624 --- /dev/null +++ b/S2OJ/1547/data/ex_data1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23f10ec75c4ef40c9a4202505b9fed754f601d466645a5136ff6522f1648f66 +size 51 diff --git a/S2OJ/1547/data/ex_data1.out b/S2OJ/1547/data/ex_data1.out new file mode 100644 index 00000000..8d4d71a8 --- /dev/null +++ b/S2OJ/1547/data/ex_data1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5211de14b1b0a656f782d9622cd441ed0dd9fb24d13f0299d431bdad4c61e341 +size 4 diff --git a/S2OJ/1547/data/ex_data2.in b/S2OJ/1547/data/ex_data2.in new file mode 100644 index 00000000..facfdc92 --- /dev/null +++ b/S2OJ/1547/data/ex_data2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04cb4a08258e0aefc948105f3bd733e21655ef3b90a7dbc14037580a1189bfe +size 15721 diff --git a/S2OJ/1547/data/ex_data2.out b/S2OJ/1547/data/ex_data2.out new file mode 100644 index 00000000..811a7ba0 --- /dev/null +++ b/S2OJ/1547/data/ex_data2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c219692c3a038fcda55caa2d3a611d21fd9fca813c29e76a52cd18d5fbf91f91 +size 11 diff --git a/S2OJ/1547/data/ex_data3.in b/S2OJ/1547/data/ex_data3.in new file mode 100644 index 00000000..18456acc --- /dev/null +++ b/S2OJ/1547/data/ex_data3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eca3fd42aaa005aff5f2dbf9e3c51a4475c2a120f3a9064db780040aac5ade6 +size 2065746 diff --git a/S2OJ/1547/data/ex_data3.out b/S2OJ/1547/data/ex_data3.out new file mode 100644 index 00000000..403944ae --- /dev/null +++ b/S2OJ/1547/data/ex_data3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944ebe47f5704513c2223d78a56633b0532568105cb3e2231a0be89c420d27ce +size 14 diff --git a/S2OJ/1547/data/problem.conf b/S2OJ/1547/data/problem.conf new file mode 100644 index 00000000..7bcecedd --- /dev/null +++ b/S2OJ/1547/data/problem.conf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5d4a810cf2a1015d3bf36238f6fbc0959ca55caa80135d9fb5422323af85fc +size 714