diff --git a/LibreOJ/2759/2759.cpp b/LibreOJ/2759/2759.cpp new file mode 100644 index 00000000..514fc19e --- /dev/null +++ b/LibreOJ/2759/2759.cpp @@ -0,0 +1,70 @@ +#include +#include +#include +#include + +using std::cin; +using std::cout; +using std::endl; + +const int N = 100005; + +int n, m, x, h[N], nh[N]; +std::vector> g[N]; + +// Dijkstra - Shortest Path +long long dist[N]; +bool vis[N]; +void dijkstra() { + memset(dist, 0x3f, sizeof(dist)); + dist[1] = 0; + std::priority_queue, std::vector>, std::greater>> q; + q.push(std::make_pair(0, 1)); + nh[1] = x; + while (!q.empty()) { + int u = q.top().second; + q.pop(); + if (vis[u]) continue; + vis[u] = true; + for (auto e : g[u]) { + int v = e.first; + long long w = e.second; + if (nh[u] - w > h[v]) { // 到达点的高度大于树顶高度 + if (dist[v] > dist[u] + nh[u] - h[v]) { + dist[v] = dist[u] + nh[u] - h[v]; + nh[v] = h[v]; + q.push(std::make_pair(dist[v], v)); + } + } else if (nh[u] - w < 0) { // 飞行中途会落地 + if (dist[v] > dist[u] + w - nh[u] + w) { + dist[v] = dist[u] + w - nh[u] + w; + nh[v] = 0; + q.push(std::make_pair(dist[v], v)); + } + } else if (dist[v] > dist[u] + w) { // 其他情况 + dist[v] = dist[u] + w; + nh[v] = nh[u] - w; + q.push(std::make_pair(dist[v], v)); + } + } + } +} + +int main() { + cin >> n >> m >> x; + for (int i = 1; i <= n; i++) { + cin >> h[i]; + } + for (int i = 1; i <= m; i++) { + int u, v; + long long w; + cin >> u >> v >> w; + + // 保证飞行中途不落地 + if (w <= h[u]) g[u].push_back(std::make_pair(v, w)); + if (w <= h[v]) g[v].push_back(std::make_pair(u, w)); + } + dijkstra(); + cout << (dist[n] == 0x3f3f3f3f3f3f3f3f ? -1 : dist[n] + h[n] - nh[n]) << endl; + return 0; +} diff --git a/LibreOJ/2759/data/1.in b/LibreOJ/2759/data/1.in new file mode 100644 index 00000000..eca034ae --- /dev/null +++ b/LibreOJ/2759/data/1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1024bb3324bbc10fb8fd0470715c6d152496cf37846c3ae372a31065481ef2 +size 13447 diff --git a/LibreOJ/2759/data/1.out b/LibreOJ/2759/data/1.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/1.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/10.in b/LibreOJ/2759/data/10.in new file mode 100644 index 00000000..61b760fe --- /dev/null +++ b/LibreOJ/2759/data/10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c668c56c8d90ac8dfd9928721ef5fde1c81eb86e6b42eaf4eb129e44ee92ef5 +size 32983 diff --git a/LibreOJ/2759/data/10.out b/LibreOJ/2759/data/10.out new file mode 100644 index 00000000..998c590e --- /dev/null +++ b/LibreOJ/2759/data/10.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d5a38598be77593d4781b8fbd74cb4e2cd05bb006b1b531988ab2db90de9c9 +size 3 diff --git a/LibreOJ/2759/data/11.in b/LibreOJ/2759/data/11.in new file mode 100644 index 00000000..d7972f04 --- /dev/null +++ b/LibreOJ/2759/data/11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd967e8edca7d473c2b2a9431f6db97be56a5a9e33b512a5e99868952df2944 +size 1566 diff --git a/LibreOJ/2759/data/11.out b/LibreOJ/2759/data/11.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/11.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/12.in b/LibreOJ/2759/data/12.in new file mode 100644 index 00000000..33a9faea --- /dev/null +++ b/LibreOJ/2759/data/12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ff0379a48e450236b574a9af38217c61826d531364052cefe6057663d8a449d +size 34432 diff --git a/LibreOJ/2759/data/12.out b/LibreOJ/2759/data/12.out new file mode 100644 index 00000000..d36effd9 --- /dev/null +++ b/LibreOJ/2759/data/12.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8dec72d646d84a9af4b9b8b140fa693f6b6e2826be00136c77071b49b528ad +size 4 diff --git a/LibreOJ/2759/data/13.in b/LibreOJ/2759/data/13.in new file mode 100644 index 00000000..ad7cccb2 --- /dev/null +++ b/LibreOJ/2759/data/13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d561c15afc1aead0600f1d35011cda81c9e2f86488f1f486d988289b0a6620e0 +size 34458 diff --git a/LibreOJ/2759/data/13.out b/LibreOJ/2759/data/13.out new file mode 100644 index 00000000..fa264543 --- /dev/null +++ b/LibreOJ/2759/data/13.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806ed966b29024dcd0b6c125cc9dd50f85cb9b180bed1a909de0f410983ac10e +size 4 diff --git a/LibreOJ/2759/data/14.in b/LibreOJ/2759/data/14.in new file mode 100644 index 00000000..9801d02d --- /dev/null +++ b/LibreOJ/2759/data/14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b53d43443f6a804718a19ffeb9bfad6c1969a6de49bec4eaa28ee4c0b95334 +size 9261 diff --git a/LibreOJ/2759/data/14.out b/LibreOJ/2759/data/14.out new file mode 100644 index 00000000..c13e25ee --- /dev/null +++ b/LibreOJ/2759/data/14.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:816c83d0ac08a94e91547a30df27dbbe88c7643cfa3c99d33120fd361173759a +size 3 diff --git a/LibreOJ/2759/data/15.in b/LibreOJ/2759/data/15.in new file mode 100644 index 00000000..a8fa933b --- /dev/null +++ b/LibreOJ/2759/data/15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efafd8bbfb4bbccab33839a5327e31843b052ced4323020adc405d8919f63e0 +size 28559 diff --git a/LibreOJ/2759/data/15.out b/LibreOJ/2759/data/15.out new file mode 100644 index 00000000..73d73dfb --- /dev/null +++ b/LibreOJ/2759/data/15.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bde7eb9f6c71611dc5726e8aca3eb4eba3e386da49e0a4ed5c295a90a73a0d +size 4 diff --git a/LibreOJ/2759/data/16.in b/LibreOJ/2759/data/16.in new file mode 100644 index 00000000..98f84d03 --- /dev/null +++ b/LibreOJ/2759/data/16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea2742c5e2505d2b3c9639eaba120297e53d01370cfb44eadd302f471764dac +size 13057 diff --git a/LibreOJ/2759/data/16.out b/LibreOJ/2759/data/16.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/16.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/17.in b/LibreOJ/2759/data/17.in new file mode 100644 index 00000000..a1a69ccb --- /dev/null +++ b/LibreOJ/2759/data/17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21306e27a9dd7850f2c1f15cbd8654bc21e5002d96def265f02c727857636e0d +size 5853 diff --git a/LibreOJ/2759/data/17.out b/LibreOJ/2759/data/17.out new file mode 100644 index 00000000..f57f03a7 --- /dev/null +++ b/LibreOJ/2759/data/17.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744fbe289d22b8b5c36994f3bcade2f72d176146cdbdffdb69fb7dc94a487a77 +size 5 diff --git a/LibreOJ/2759/data/18.in b/LibreOJ/2759/data/18.in new file mode 100644 index 00000000..171b0058 --- /dev/null +++ b/LibreOJ/2759/data/18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e605d799ea4b712a6fae0a7b3e48c8cec8cce7e68ee2fab932329439116bb5f +size 10116 diff --git a/LibreOJ/2759/data/18.out b/LibreOJ/2759/data/18.out new file mode 100644 index 00000000..e797cc01 --- /dev/null +++ b/LibreOJ/2759/data/18.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3779e91a1f72d54a2bac4cd4d5ae6dc734c67d3d1f381d1d71e2014ae93a2d4 +size 5 diff --git a/LibreOJ/2759/data/19.in b/LibreOJ/2759/data/19.in new file mode 100644 index 00000000..8943b3c5 --- /dev/null +++ b/LibreOJ/2759/data/19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80da3fd47da1667aee11f4f1d70c5e377278ba87fe0e2aadf356988ffc79e7d +size 6871 diff --git a/LibreOJ/2759/data/19.out b/LibreOJ/2759/data/19.out new file mode 100644 index 00000000..33548122 --- /dev/null +++ b/LibreOJ/2759/data/19.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86e0889c7587a842c035a0e3086a89143ffc0ebed438c3d038348a68b7fa146 +size 5 diff --git a/LibreOJ/2759/data/2.in b/LibreOJ/2759/data/2.in new file mode 100644 index 00000000..c8ae3bb0 --- /dev/null +++ b/LibreOJ/2759/data/2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89edde85d457065e13792e6fb359de41a889ed11364b82103c725e4b0ccb595b +size 31383 diff --git a/LibreOJ/2759/data/2.out b/LibreOJ/2759/data/2.out new file mode 100644 index 00000000..c85aafd3 --- /dev/null +++ b/LibreOJ/2759/data/2.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02efad74c4db35b2450beec922eb590d202b34c5b436bff0b6acc15059f5d21 +size 4 diff --git a/LibreOJ/2759/data/20.in b/LibreOJ/2759/data/20.in new file mode 100644 index 00000000..c0c13bf5 --- /dev/null +++ b/LibreOJ/2759/data/20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7741531e175f745f78c9b4ecf8eda2edd9da62fb2de0340b5cd391ecf8f0d3 +size 13059 diff --git a/LibreOJ/2759/data/20.out b/LibreOJ/2759/data/20.out new file mode 100644 index 00000000..f7b76a93 --- /dev/null +++ b/LibreOJ/2759/data/20.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab9e6f3af153d7001823100aa51b0dbc016a0151f02bf099e8d692ee467ce7a +size 5 diff --git a/LibreOJ/2759/data/21.in b/LibreOJ/2759/data/21.in new file mode 100644 index 00000000..349ce739 --- /dev/null +++ b/LibreOJ/2759/data/21.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5e7fc4ecd5abb3cd544c43dd991161a4d82f01764d1de3c51a5b702661e0ba +size 6869176 diff --git a/LibreOJ/2759/data/21.out b/LibreOJ/2759/data/21.out new file mode 100644 index 00000000..f6ae4032 --- /dev/null +++ b/LibreOJ/2759/data/21.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cada4ea68b3dd1f8053e720b60731b3b14354f9ea9fd1156f952fcf8727212 +size 9 diff --git a/LibreOJ/2759/data/22.in b/LibreOJ/2759/data/22.in new file mode 100644 index 00000000..b986caf2 --- /dev/null +++ b/LibreOJ/2759/data/22.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80478a5f46cff732a53c21d8a2a81f0673a01705252c32ed9e17e533b17d4be +size 5279440 diff --git a/LibreOJ/2759/data/22.out b/LibreOJ/2759/data/22.out new file mode 100644 index 00000000..5de8a204 --- /dev/null +++ b/LibreOJ/2759/data/22.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af8c92b7d6657419fc9856d407afa8d85cc7c89d45f9f439b267d2f340a5be8 +size 10 diff --git a/LibreOJ/2759/data/23.in b/LibreOJ/2759/data/23.in new file mode 100644 index 00000000..04552503 --- /dev/null +++ b/LibreOJ/2759/data/23.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4451bc26260857b93e8c75ae732196faed563af05324dbeef5890b3be1ea7ce4 +size 3017025 diff --git a/LibreOJ/2759/data/23.out b/LibreOJ/2759/data/23.out new file mode 100644 index 00000000..63002b5a --- /dev/null +++ b/LibreOJ/2759/data/23.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31771590cb98c162ff2ad048ba1a03de5242334fdfee51f033c9d5afdbec5490 +size 10 diff --git a/LibreOJ/2759/data/24.in b/LibreOJ/2759/data/24.in new file mode 100644 index 00000000..9a3fa935 --- /dev/null +++ b/LibreOJ/2759/data/24.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37cd5262e7bc5f82eb7712aeb6dd555bc6c5848390db7d67de5782e82fd8c460 +size 4678520 diff --git a/LibreOJ/2759/data/24.out b/LibreOJ/2759/data/24.out new file mode 100644 index 00000000..f0b98f56 --- /dev/null +++ b/LibreOJ/2759/data/24.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a96b71ac1f074b212347595e9e0bee7b8afd941c76d607a450d3174d6f42258 +size 4 diff --git a/LibreOJ/2759/data/25.in b/LibreOJ/2759/data/25.in new file mode 100644 index 00000000..c26d664b --- /dev/null +++ b/LibreOJ/2759/data/25.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c525ae5743c1ce353b76fbcad2c4e7519a0ae1dbf0df71f311d1e9306029618c +size 4602189 diff --git a/LibreOJ/2759/data/25.out b/LibreOJ/2759/data/25.out new file mode 100644 index 00000000..fb2e6b42 --- /dev/null +++ b/LibreOJ/2759/data/25.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d0989be8303c2eaaf06d72c12d499388588d8ff9ff6e476856646b9636dcf8 +size 10 diff --git a/LibreOJ/2759/data/26.in b/LibreOJ/2759/data/26.in new file mode 100644 index 00000000..61dbddaf --- /dev/null +++ b/LibreOJ/2759/data/26.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3661a16eadcdbecd13060511a7027ecbf5172a5225ead8bd1417fc2855e7cd +size 301950 diff --git a/LibreOJ/2759/data/26.out b/LibreOJ/2759/data/26.out new file mode 100644 index 00000000..57164462 --- /dev/null +++ b/LibreOJ/2759/data/26.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1082eeb809a0c1172cd50e40d216f368656b60a4bb7829a192e2f6dd0fccab57 +size 9 diff --git a/LibreOJ/2759/data/27.in b/LibreOJ/2759/data/27.in new file mode 100644 index 00000000..50147bfe --- /dev/null +++ b/LibreOJ/2759/data/27.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e347ebee0caf924b1d48fec77f67557dcce35e25d79c035160435afaa2d3bc6 +size 5479239 diff --git a/LibreOJ/2759/data/27.out b/LibreOJ/2759/data/27.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/27.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/28.in b/LibreOJ/2759/data/28.in new file mode 100644 index 00000000..923cd8a9 --- /dev/null +++ b/LibreOJ/2759/data/28.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4701dc22e91171212c6a14ec0ff99765ef447d24ecb1aa4ee38b41daea9984 +size 5059838 diff --git a/LibreOJ/2759/data/28.out b/LibreOJ/2759/data/28.out new file mode 100644 index 00000000..65b58afa --- /dev/null +++ b/LibreOJ/2759/data/28.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44094bab763541eef0741928cd932420884173f6048ca37de8b26ad1efa732ad +size 8 diff --git a/LibreOJ/2759/data/29.in b/LibreOJ/2759/data/29.in new file mode 100644 index 00000000..4073a0ad --- /dev/null +++ b/LibreOJ/2759/data/29.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec95b718b4fe144edfcf056465b6d7643f2e269fbf8fe3c8887035ce85b55ae +size 6089870 diff --git a/LibreOJ/2759/data/29.out b/LibreOJ/2759/data/29.out new file mode 100644 index 00000000..76f9741a --- /dev/null +++ b/LibreOJ/2759/data/29.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd36369b8842b8ff5b0b038d68ca986ce7c6d245f0717415c43a309e2f8270d +size 9 diff --git a/LibreOJ/2759/data/3.in b/LibreOJ/2759/data/3.in new file mode 100644 index 00000000..d11811a4 --- /dev/null +++ b/LibreOJ/2759/data/3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b97cfbbb1c06a6e9860cdc0de34792136b344223a1fbcc12088ff2b5a1ac1b5e +size 34543 diff --git a/LibreOJ/2759/data/3.out b/LibreOJ/2759/data/3.out new file mode 100644 index 00000000..d36effd9 --- /dev/null +++ b/LibreOJ/2759/data/3.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8dec72d646d84a9af4b9b8b140fa693f6b6e2826be00136c77071b49b528ad +size 4 diff --git a/LibreOJ/2759/data/30.in b/LibreOJ/2759/data/30.in new file mode 100644 index 00000000..d604588a --- /dev/null +++ b/LibreOJ/2759/data/30.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba5300a103dca89f80e8c672f8df8e175e93c739c1696af1bc943143a7ff37d +size 3993246 diff --git a/LibreOJ/2759/data/30.out b/LibreOJ/2759/data/30.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/30.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/31.in b/LibreOJ/2759/data/31.in new file mode 100644 index 00000000..d6f23ef7 --- /dev/null +++ b/LibreOJ/2759/data/31.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e40bf2dbb8ba940244544c7612ba9a7f7d40b96ed92c44d3f5d22512f06bd34 +size 381447 diff --git a/LibreOJ/2759/data/31.out b/LibreOJ/2759/data/31.out new file mode 100644 index 00000000..78e763d4 --- /dev/null +++ b/LibreOJ/2759/data/31.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d03872c65b8680b09df96eeb31d4713d439108f1bad6a0bf53369a4bb30c7a +size 4 diff --git a/LibreOJ/2759/data/32.in b/LibreOJ/2759/data/32.in new file mode 100644 index 00000000..3318def6 --- /dev/null +++ b/LibreOJ/2759/data/32.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33a128b04754848c68912c0fa26ae412871f9e6e21801084a3111cf14084d7e +size 4001806 diff --git a/LibreOJ/2759/data/32.out b/LibreOJ/2759/data/32.out new file mode 100644 index 00000000..cbc16f9c --- /dev/null +++ b/LibreOJ/2759/data/32.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b6eb84f0a95f49db5198657a9a1cda7b92c2035ef9179f9318eae384843012 +size 9 diff --git a/LibreOJ/2759/data/33.in b/LibreOJ/2759/data/33.in new file mode 100644 index 00000000..6cf622e0 --- /dev/null +++ b/LibreOJ/2759/data/33.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a54833ae5a7da6c80827cf38bab176a5801e5cd168c1e45209ce5f97c2b821 +size 1605227 diff --git a/LibreOJ/2759/data/33.out b/LibreOJ/2759/data/33.out new file mode 100644 index 00000000..a1712fa2 --- /dev/null +++ b/LibreOJ/2759/data/33.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6026e5df09632311c90e3d6915e5699be3bc83964fbbeaf46411036cfc974797 +size 4 diff --git a/LibreOJ/2759/data/34.in b/LibreOJ/2759/data/34.in new file mode 100644 index 00000000..95a70321 --- /dev/null +++ b/LibreOJ/2759/data/34.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c90fd8773d91a13d41d59ec4dcfcac16ff3771b7e076296b11d9c7d290042f +size 5125518 diff --git a/LibreOJ/2759/data/34.out b/LibreOJ/2759/data/34.out new file mode 100644 index 00000000..605331c8 --- /dev/null +++ b/LibreOJ/2759/data/34.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078dc3f7e58ef720a5b6d8b78f0e3b557d6c2a91771e3c5cfd2b65f615a61b40 +size 6 diff --git a/LibreOJ/2759/data/35.in b/LibreOJ/2759/data/35.in new file mode 100644 index 00000000..195951a9 --- /dev/null +++ b/LibreOJ/2759/data/35.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f5862dd49c74d6c97775659b5e2ef635dcc381e2e8aedd59ca879b0de2597a +size 199122 diff --git a/LibreOJ/2759/data/35.out b/LibreOJ/2759/data/35.out new file mode 100644 index 00000000..66f98a46 --- /dev/null +++ b/LibreOJ/2759/data/35.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237055e0b591f1c66423571a2f590b9ca3eba51536b3bac8f091d6f828fa52b0 +size 14 diff --git a/LibreOJ/2759/data/36.in b/LibreOJ/2759/data/36.in new file mode 100644 index 00000000..ca6da1c7 --- /dev/null +++ b/LibreOJ/2759/data/36.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8e6b041c6eba766b1fef79cb5e9ec3ada9558e8d5908f5122eddd54244e2c9 +size 3974594 diff --git a/LibreOJ/2759/data/36.out b/LibreOJ/2759/data/36.out new file mode 100644 index 00000000..d83a1d62 --- /dev/null +++ b/LibreOJ/2759/data/36.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0712feefe5a1f6d8376363fb8530f5b668989067683e5e475d385e4bc063257 +size 4 diff --git a/LibreOJ/2759/data/37.in b/LibreOJ/2759/data/37.in new file mode 100644 index 00000000..473907c8 --- /dev/null +++ b/LibreOJ/2759/data/37.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e616f3f1073d6720b687ef8b36ce80baefaa8e4c520af0456fa542bf77945d6b +size 583811 diff --git a/LibreOJ/2759/data/37.out b/LibreOJ/2759/data/37.out new file mode 100644 index 00000000..57346798 --- /dev/null +++ b/LibreOJ/2759/data/37.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0365871abcaae49da82288f106da5370dc126cb0e762fbc34897f5112beeaa11 +size 12 diff --git a/LibreOJ/2759/data/38.in b/LibreOJ/2759/data/38.in new file mode 100644 index 00000000..5df1127f --- /dev/null +++ b/LibreOJ/2759/data/38.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5133f285a9bcbb3ad969dd429f4f1be3d439e9c18575c11082a81e8bcbf42065 +size 749566 diff --git a/LibreOJ/2759/data/38.out b/LibreOJ/2759/data/38.out new file mode 100644 index 00000000..10120ede --- /dev/null +++ b/LibreOJ/2759/data/38.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdb8b2626da446bb016a30c03e96656c2702b1aba516a039aaf8af8175150ae +size 13 diff --git a/LibreOJ/2759/data/39.in b/LibreOJ/2759/data/39.in new file mode 100644 index 00000000..052dd36d --- /dev/null +++ b/LibreOJ/2759/data/39.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b375ad08fddca70540c23d6b887c5815c2adf4fb5d3beaf68ce652289110991 +size 2630666 diff --git a/LibreOJ/2759/data/39.out b/LibreOJ/2759/data/39.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/39.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/4.in b/LibreOJ/2759/data/4.in new file mode 100644 index 00000000..52afa6c8 --- /dev/null +++ b/LibreOJ/2759/data/4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576578f486d8ccbdfc319869f96c1210ddda06784cad69db004a92fdef5ebae7 +size 14396 diff --git a/LibreOJ/2759/data/4.out b/LibreOJ/2759/data/4.out new file mode 100644 index 00000000..d6c95bee --- /dev/null +++ b/LibreOJ/2759/data/4.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdba9adccec0b22b41a8cafd2b6abcff2e032ba8d5255f179bfc21c779941ef +size 4 diff --git a/LibreOJ/2759/data/40.in b/LibreOJ/2759/data/40.in new file mode 100644 index 00000000..2ff6a11b --- /dev/null +++ b/LibreOJ/2759/data/40.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e3e7be4909bbd1992aa45d88b68b796351d520501a2bfdaeab47791df15667 +size 528114 diff --git a/LibreOJ/2759/data/40.out b/LibreOJ/2759/data/40.out new file mode 100644 index 00000000..1b4fd1a1 --- /dev/null +++ b/LibreOJ/2759/data/40.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1aa76754a8ef830ad18f97359ea1adc99339fc22ebc32c48c29909da1c7f9f +size 10 diff --git a/LibreOJ/2759/data/41.in b/LibreOJ/2759/data/41.in new file mode 100644 index 00000000..47d12338 --- /dev/null +++ b/LibreOJ/2759/data/41.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee96404298872c713f7b771ec440b6c10ffe01de58529211bc2ab37be42db91c +size 6299371 diff --git a/LibreOJ/2759/data/41.out b/LibreOJ/2759/data/41.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/41.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/42.in b/LibreOJ/2759/data/42.in new file mode 100644 index 00000000..a5400916 --- /dev/null +++ b/LibreOJ/2759/data/42.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5675a44ff0a75ab9646fedb8341f9266813ec972d34e3ef26131c1e4e8ea0a6e +size 1119388 diff --git a/LibreOJ/2759/data/42.out b/LibreOJ/2759/data/42.out new file mode 100644 index 00000000..edaed880 --- /dev/null +++ b/LibreOJ/2759/data/42.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db97934a51f4247eda699ea5d41ec45e072112d0c8b73115f15f4066a17abf98 +size 10 diff --git a/LibreOJ/2759/data/43.in b/LibreOJ/2759/data/43.in new file mode 100644 index 00000000..40fa3ad5 --- /dev/null +++ b/LibreOJ/2759/data/43.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520af5cb12271accd35587dfef38e59e4d9737d2538282ffe3feebad8e714613 +size 4227992 diff --git a/LibreOJ/2759/data/43.out b/LibreOJ/2759/data/43.out new file mode 100644 index 00000000..f3e5f522 --- /dev/null +++ b/LibreOJ/2759/data/43.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f93a5104aa9781147bfaea6b12c96450463c68fc6cbeaa92f44eec4380b3f7 +size 9 diff --git a/LibreOJ/2759/data/44.in b/LibreOJ/2759/data/44.in new file mode 100644 index 00000000..b6ce3097 --- /dev/null +++ b/LibreOJ/2759/data/44.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04808dcddc91e6475f75910b0ba42bfdb06c8d48e1e6da7b540bd769dcd88472 +size 2246010 diff --git a/LibreOJ/2759/data/44.out b/LibreOJ/2759/data/44.out new file mode 100644 index 00000000..eafc08e5 --- /dev/null +++ b/LibreOJ/2759/data/44.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d392af629938c9f8f5e0641cacac54fa1c2e6c93bb98b799056f7131c6a386 +size 10 diff --git a/LibreOJ/2759/data/45.in b/LibreOJ/2759/data/45.in new file mode 100644 index 00000000..51c70eff --- /dev/null +++ b/LibreOJ/2759/data/45.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc4a8642b2bd33cab8f07140eb8bf00eb68556c09c877994331c993f628c905 +size 4514641 diff --git a/LibreOJ/2759/data/45.out b/LibreOJ/2759/data/45.out new file mode 100644 index 00000000..622ea687 --- /dev/null +++ b/LibreOJ/2759/data/45.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dadd594037fcc8c06bca5e2b4d7ee20fcbfcab1674aafd844cfab337cc2d5b +size 10 diff --git a/LibreOJ/2759/data/46.in b/LibreOJ/2759/data/46.in new file mode 100644 index 00000000..ecbf1ceb --- /dev/null +++ b/LibreOJ/2759/data/46.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e059efc668fc357d6876f2dba26c31eef08c9a669bcc9977fb6ee74ca9bbed46 +size 688575 diff --git a/LibreOJ/2759/data/46.out b/LibreOJ/2759/data/46.out new file mode 100644 index 00000000..1e15b876 --- /dev/null +++ b/LibreOJ/2759/data/46.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06598e66693d7d4cea536915b6e3afde722a9379f2b8676e9d8b2c1c7f2514b +size 7 diff --git a/LibreOJ/2759/data/47.in b/LibreOJ/2759/data/47.in new file mode 100644 index 00000000..dccc9a43 --- /dev/null +++ b/LibreOJ/2759/data/47.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b555995cffa49ba7304a496772873b8aecd737227ecac96c8005938398951d7 +size 4656943 diff --git a/LibreOJ/2759/data/47.out b/LibreOJ/2759/data/47.out new file mode 100644 index 00000000..8f22e062 --- /dev/null +++ b/LibreOJ/2759/data/47.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f98433f1ec9d922c77aed917870a167a080f3a106249fe2dd53c44b7ad2dfd9 +size 10 diff --git a/LibreOJ/2759/data/48.in b/LibreOJ/2759/data/48.in new file mode 100644 index 00000000..9f568641 --- /dev/null +++ b/LibreOJ/2759/data/48.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d010af3e4a99216bc7d8cea0f1f41a4e6fa270ed8be9c71f39d6a405aa6d3c47 +size 4333807 diff --git a/LibreOJ/2759/data/48.out b/LibreOJ/2759/data/48.out new file mode 100644 index 00000000..4a946ba9 --- /dev/null +++ b/LibreOJ/2759/data/48.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc93fd48b61b5254fa8c16e6926e469da5f1c2bfec8224e9d6f2c8a34718236 +size 10 diff --git a/LibreOJ/2759/data/49.in b/LibreOJ/2759/data/49.in new file mode 100644 index 00000000..73ba3979 --- /dev/null +++ b/LibreOJ/2759/data/49.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f246d0570e2902915cb55ada3e12eaae9aa08d3f2a343066d06ac5fe1997ad5 +size 3140030 diff --git a/LibreOJ/2759/data/49.out b/LibreOJ/2759/data/49.out new file mode 100644 index 00000000..8c0e847c --- /dev/null +++ b/LibreOJ/2759/data/49.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb11bcc44470443c769fbec1052c056df1068c4e25b241b265fdb09bc2e6d29 +size 10 diff --git a/LibreOJ/2759/data/5.in b/LibreOJ/2759/data/5.in new file mode 100644 index 00000000..755d8253 --- /dev/null +++ b/LibreOJ/2759/data/5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe575414c55b817038ab9125c4960863c72fbf0012e4e90661e9473a2d4b4e3 +size 17557 diff --git a/LibreOJ/2759/data/5.out b/LibreOJ/2759/data/5.out new file mode 100644 index 00000000..5b515b91 --- /dev/null +++ b/LibreOJ/2759/data/5.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c942bc47f4c98e6bda9666c229c1dced88eec8ee73383d7c75de3dc21a3941f4 +size 4 diff --git a/LibreOJ/2759/data/50.in b/LibreOJ/2759/data/50.in new file mode 100644 index 00000000..e2d159c0 --- /dev/null +++ b/LibreOJ/2759/data/50.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3345331264426c9bfb024b82247a27c94a61da37ca1c1b60d2e2db0bdf29aed5 +size 4478733 diff --git a/LibreOJ/2759/data/50.out b/LibreOJ/2759/data/50.out new file mode 100644 index 00000000..8813bcb2 --- /dev/null +++ b/LibreOJ/2759/data/50.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b576f98a71436547e1f9d4eeb11c6aea4d4bc168673f785e56b327b8370d5bc +size 10 diff --git a/LibreOJ/2759/data/51.in b/LibreOJ/2759/data/51.in new file mode 100644 index 00000000..4535cf49 --- /dev/null +++ b/LibreOJ/2759/data/51.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d97c6b03060be2add21070952e764c75ba0f0f9fa7985667797830a8d29f0d7 +size 962537 diff --git a/LibreOJ/2759/data/51.out b/LibreOJ/2759/data/51.out new file mode 100644 index 00000000..ae8d7900 --- /dev/null +++ b/LibreOJ/2759/data/51.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47fa8eb90ebada2bbe159550bdc81595ebc4466f6607c15e48de79783fe0117 +size 13 diff --git a/LibreOJ/2759/data/52.in b/LibreOJ/2759/data/52.in new file mode 100644 index 00000000..f308763d --- /dev/null +++ b/LibreOJ/2759/data/52.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2048124cbeb1adbab242cf3d8ab0ca848f33b1d8cdb2407ea9f40459e322cc +size 5408067 diff --git a/LibreOJ/2759/data/52.out b/LibreOJ/2759/data/52.out new file mode 100644 index 00000000..f4aa2a30 --- /dev/null +++ b/LibreOJ/2759/data/52.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a16abfca59be4c72ee7b277c5ae576d0f68b557a077928ac408c0a9de6484ac +size 11 diff --git a/LibreOJ/2759/data/53.in b/LibreOJ/2759/data/53.in new file mode 100644 index 00000000..a17197ff --- /dev/null +++ b/LibreOJ/2759/data/53.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2c399f787779d446e6ed8c7e73c925eb1ec17bd2739ca47b0fe19ea5e65213 +size 5960159 diff --git a/LibreOJ/2759/data/53.out b/LibreOJ/2759/data/53.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/53.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/54.in b/LibreOJ/2759/data/54.in new file mode 100644 index 00000000..8c3b5570 --- /dev/null +++ b/LibreOJ/2759/data/54.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb784ded8c6d313051d15e2460698a79cba197ee80b9fd112f90016d00978a19 +size 5534020 diff --git a/LibreOJ/2759/data/54.out b/LibreOJ/2759/data/54.out new file mode 100644 index 00000000..91e4adf8 --- /dev/null +++ b/LibreOJ/2759/data/54.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf97f8b4ac815292e51cfc02ae5aee46dac84c90878f1244f55b69e096933b9 +size 11 diff --git a/LibreOJ/2759/data/55.in b/LibreOJ/2759/data/55.in new file mode 100644 index 00000000..3ff64e17 --- /dev/null +++ b/LibreOJ/2759/data/55.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1adb7a4f58a6527302a6a4e16e8f34f1e1d5b22be44e8198b7c6948d2543d2 +size 4759636 diff --git a/LibreOJ/2759/data/55.out b/LibreOJ/2759/data/55.out new file mode 100644 index 00000000..43fe80ee --- /dev/null +++ b/LibreOJ/2759/data/55.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f9584dcb1a263942b347634c1efcf21750764bd00449c11e54832be2ea0df3 +size 11 diff --git a/LibreOJ/2759/data/56.in b/LibreOJ/2759/data/56.in new file mode 100644 index 00000000..6a2e260f --- /dev/null +++ b/LibreOJ/2759/data/56.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9a0b5b9d6dcbfb1c9a9a501170b59a373f04b1a23c796d008ce0ecdf59f6a4 +size 4358031 diff --git a/LibreOJ/2759/data/56.out b/LibreOJ/2759/data/56.out new file mode 100644 index 00000000..a405b03b --- /dev/null +++ b/LibreOJ/2759/data/56.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91996277b5989f7f6d401fe75e21a4a6b0de7c2ed9e6272f2e5ec8e35a742ac +size 9 diff --git a/LibreOJ/2759/data/57.in b/LibreOJ/2759/data/57.in new file mode 100644 index 00000000..0bcef2a0 --- /dev/null +++ b/LibreOJ/2759/data/57.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b72fefd1068ccd9c725a1ccada3faade0756d15e372ce6a1180a32d4c1258d0 +size 1511256 diff --git a/LibreOJ/2759/data/57.out b/LibreOJ/2759/data/57.out new file mode 100644 index 00000000..8d781767 --- /dev/null +++ b/LibreOJ/2759/data/57.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad6177d5599ac3732fddf388aea23d6e3dec3e3ad922dc1c829ad59b67453c6 +size 11 diff --git a/LibreOJ/2759/data/58.in b/LibreOJ/2759/data/58.in new file mode 100644 index 00000000..e0a4d798 --- /dev/null +++ b/LibreOJ/2759/data/58.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2a281802235f6a1371629f6ed70d1faebe0e9adb6e5e5e4646f419b61e36d6 +size 112454 diff --git a/LibreOJ/2759/data/58.out b/LibreOJ/2759/data/58.out new file mode 100644 index 00000000..d1358999 --- /dev/null +++ b/LibreOJ/2759/data/58.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98f60f43340d735e39866110a56d576744f89a870e0e59301ce6214eddbdd6d +size 11 diff --git a/LibreOJ/2759/data/59.in b/LibreOJ/2759/data/59.in new file mode 100644 index 00000000..0b9d119e --- /dev/null +++ b/LibreOJ/2759/data/59.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07391b891ced9728f98485441c7dc76e504f784785572cea98dda281f7711df3 +size 5801408 diff --git a/LibreOJ/2759/data/59.out b/LibreOJ/2759/data/59.out new file mode 100644 index 00000000..311c4506 --- /dev/null +++ b/LibreOJ/2759/data/59.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3aa64bb94a50845d5024cd4bd20202a4567aed5cd5328c0d97e9920775fc28 +size 3 diff --git a/LibreOJ/2759/data/6.in b/LibreOJ/2759/data/6.in new file mode 100644 index 00000000..742c154f --- /dev/null +++ b/LibreOJ/2759/data/6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32388a5c4cf91cb72519a3d370633f3872c96c3557b9f0fd2a9d4c1c67e38f8 +size 1914 diff --git a/LibreOJ/2759/data/6.out b/LibreOJ/2759/data/6.out new file mode 100644 index 00000000..73d73dfb --- /dev/null +++ b/LibreOJ/2759/data/6.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bde7eb9f6c71611dc5726e8aca3eb4eba3e386da49e0a4ed5c295a90a73a0d +size 4 diff --git a/LibreOJ/2759/data/60.in b/LibreOJ/2759/data/60.in new file mode 100644 index 00000000..52f50e70 --- /dev/null +++ b/LibreOJ/2759/data/60.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e5ee35b026b3a955d2a1cf77da5032ec1b5fd34ef14dd024f66049ae10ab30 +size 1616224 diff --git a/LibreOJ/2759/data/60.out b/LibreOJ/2759/data/60.out new file mode 100644 index 00000000..89481cf9 --- /dev/null +++ b/LibreOJ/2759/data/60.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8abb3f82fd752a28ef2eec6640c616610db9478b32a1c19ec59782965658e3 +size 12 diff --git a/LibreOJ/2759/data/7.in b/LibreOJ/2759/data/7.in new file mode 100644 index 00000000..12a894e6 --- /dev/null +++ b/LibreOJ/2759/data/7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9245436ec24cac000c6189629a66fa33b467f7ce3d882d108856ab39a31c9c2 +size 7432 diff --git a/LibreOJ/2759/data/7.out b/LibreOJ/2759/data/7.out new file mode 100644 index 00000000..cd3ff3f5 --- /dev/null +++ b/LibreOJ/2759/data/7.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78003ff34922c69c18c2a1a2e2ac8c6eb65db64f54c5adf0136228fa1995eb03 +size 5 diff --git a/LibreOJ/2759/data/8.in b/LibreOJ/2759/data/8.in new file mode 100644 index 00000000..893f7876 --- /dev/null +++ b/LibreOJ/2759/data/8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a955774704bb9b1188ab3678e2fc0d220bffedf0f6a96f359eca2ec55ddcab +size 34501 diff --git a/LibreOJ/2759/data/8.out b/LibreOJ/2759/data/8.out new file mode 100644 index 00000000..1bc3f1fd --- /dev/null +++ b/LibreOJ/2759/data/8.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e45837a2959db847f7e67a915d0ecaddd47f943af2af5fa6453be497faabca +size 4 diff --git a/LibreOJ/2759/data/9.in b/LibreOJ/2759/data/9.in new file mode 100644 index 00000000..feb179e8 --- /dev/null +++ b/LibreOJ/2759/data/9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d9e188856ffcead6043394c8675f742aeba313fe7306dc50c9ff24efdce507 +size 32431 diff --git a/LibreOJ/2759/data/9.out b/LibreOJ/2759/data/9.out new file mode 100644 index 00000000..21b88a97 --- /dev/null +++ b/LibreOJ/2759/data/9.out @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461144ccfd56ee3cf0f9a9d80e520c5b872166b23092d5fd838ecbdb46d64dab +size 3