From 074289c77d4690069b469341ac52c5e6a82409e9 Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Thu, 2 Dec 2021 20:44:32 +0800 Subject: [PATCH] =?UTF-8?q?#2600.=20=E3=80=8CNOIP2011=E3=80=8D=E8=81=AA?= =?UTF-8?q?=E6=98=8E=E7=9A=84=E8=B4=A8=E7=9B=91=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://loj.ac/s/1314652 --- LibreOJ/2600/2600.cpp | 54 ++++++++++++++++++++++++++++++++++++++ LibreOJ/2600/data/qc1.ans | 3 +++ LibreOJ/2600/data/qc1.in | 3 +++ LibreOJ/2600/data/qc10.ans | 3 +++ LibreOJ/2600/data/qc10.in | 3 +++ LibreOJ/2600/data/qc11.ans | 3 +++ LibreOJ/2600/data/qc11.in | 3 +++ LibreOJ/2600/data/qc12.ans | 3 +++ LibreOJ/2600/data/qc12.in | 3 +++ LibreOJ/2600/data/qc13.ans | 3 +++ LibreOJ/2600/data/qc13.in | 3 +++ LibreOJ/2600/data/qc14.ans | 3 +++ LibreOJ/2600/data/qc14.in | 3 +++ LibreOJ/2600/data/qc15.ans | 3 +++ LibreOJ/2600/data/qc15.in | 3 +++ LibreOJ/2600/data/qc16.ans | 3 +++ LibreOJ/2600/data/qc16.in | 3 +++ LibreOJ/2600/data/qc17.ans | 3 +++ LibreOJ/2600/data/qc17.in | 3 +++ LibreOJ/2600/data/qc18.ans | 3 +++ LibreOJ/2600/data/qc18.in | 3 +++ LibreOJ/2600/data/qc19.ans | 3 +++ LibreOJ/2600/data/qc19.in | 3 +++ LibreOJ/2600/data/qc2.ans | 3 +++ LibreOJ/2600/data/qc2.in | 3 +++ LibreOJ/2600/data/qc20.ans | 3 +++ LibreOJ/2600/data/qc20.in | 3 +++ LibreOJ/2600/data/qc3.ans | 3 +++ LibreOJ/2600/data/qc3.in | 3 +++ LibreOJ/2600/data/qc4.ans | 3 +++ LibreOJ/2600/data/qc4.in | 3 +++ LibreOJ/2600/data/qc5.ans | 3 +++ LibreOJ/2600/data/qc5.in | 3 +++ LibreOJ/2600/data/qc6.ans | 3 +++ LibreOJ/2600/data/qc6.in | 3 +++ LibreOJ/2600/data/qc7.ans | 3 +++ LibreOJ/2600/data/qc7.in | 3 +++ LibreOJ/2600/data/qc8.ans | 3 +++ LibreOJ/2600/data/qc8.in | 3 +++ LibreOJ/2600/data/qc9.ans | 3 +++ LibreOJ/2600/data/qc9.in | 3 +++ 41 files changed, 174 insertions(+) create mode 100644 LibreOJ/2600/2600.cpp create mode 100644 LibreOJ/2600/data/qc1.ans create mode 100644 LibreOJ/2600/data/qc1.in create mode 100644 LibreOJ/2600/data/qc10.ans create mode 100644 LibreOJ/2600/data/qc10.in create mode 100644 LibreOJ/2600/data/qc11.ans create mode 100644 LibreOJ/2600/data/qc11.in create mode 100644 LibreOJ/2600/data/qc12.ans create mode 100644 LibreOJ/2600/data/qc12.in create mode 100644 LibreOJ/2600/data/qc13.ans create mode 100644 LibreOJ/2600/data/qc13.in create mode 100644 LibreOJ/2600/data/qc14.ans create mode 100644 LibreOJ/2600/data/qc14.in create mode 100644 LibreOJ/2600/data/qc15.ans create mode 100644 LibreOJ/2600/data/qc15.in create mode 100644 LibreOJ/2600/data/qc16.ans create mode 100644 LibreOJ/2600/data/qc16.in create mode 100644 LibreOJ/2600/data/qc17.ans create mode 100644 LibreOJ/2600/data/qc17.in create mode 100644 LibreOJ/2600/data/qc18.ans create mode 100644 LibreOJ/2600/data/qc18.in create mode 100644 LibreOJ/2600/data/qc19.ans create mode 100644 LibreOJ/2600/data/qc19.in create mode 100644 LibreOJ/2600/data/qc2.ans create mode 100644 LibreOJ/2600/data/qc2.in create mode 100644 LibreOJ/2600/data/qc20.ans create mode 100644 LibreOJ/2600/data/qc20.in create mode 100644 LibreOJ/2600/data/qc3.ans create mode 100644 LibreOJ/2600/data/qc3.in create mode 100644 LibreOJ/2600/data/qc4.ans create mode 100644 LibreOJ/2600/data/qc4.in create mode 100644 LibreOJ/2600/data/qc5.ans create mode 100644 LibreOJ/2600/data/qc5.in create mode 100644 LibreOJ/2600/data/qc6.ans create mode 100644 LibreOJ/2600/data/qc6.in create mode 100644 LibreOJ/2600/data/qc7.ans create mode 100644 LibreOJ/2600/data/qc7.in create mode 100644 LibreOJ/2600/data/qc8.ans create mode 100644 LibreOJ/2600/data/qc8.in create mode 100644 LibreOJ/2600/data/qc9.ans create mode 100644 LibreOJ/2600/data/qc9.in diff --git a/LibreOJ/2600/2600.cpp b/LibreOJ/2600/2600.cpp new file mode 100644 index 00000000..849ff08d --- /dev/null +++ b/LibreOJ/2600/2600.cpp @@ -0,0 +1,54 @@ +#include + +using std::cin; +using std::cout; +using std::endl; + +int n, m, l, r, w[200005], v[200005]; +long long s, y, sum, ans, fn[200005], fv[200005]; +std::pair q[200005]; + +bool check(int x) { + y = sum = 0; + fn[0] = fv[0] = 0; + for (int i = 1; i <= n; i++) { + fn[i] = fn[i - 1]; + fv[i] = fv[i - 1]; + if (w[i] >= x) { + fn[i] += 1; + fv[i] += v[i]; + } + } + for (int i = 1; i <= m; i++) { + y += (fn[q[i].second] - fn[q[i].first - 1]) * (fv[q[i].second] - fv[q[i].first - 1]); + } + sum = std::abs(y - s); + return y > s; +} + +int main() { + ans = std::numeric_limits::max(); + l = std::numeric_limits::max(); + r = std::numeric_limits::min(); + cin >> n >> m >> s; + for (int i = 1; i <= n; i++) { + cin >> w[i] >> v[i]; + l = std::min(l, w[i]); + r = std::max(r, w[i]); + } + for (int i = 1; i <= m; i++) { + cin >> q[i].first >> q[i].second; + } + l -= 1, r += 2; + while (l <= r) { + int mid = l + r >> 1; + if (check(mid)) { + l = mid + 1; + } else { + r = mid - 1; + } + ans = std::min(ans, sum); + } + cout << ans << endl; + return 0; +} diff --git a/LibreOJ/2600/data/qc1.ans b/LibreOJ/2600/data/qc1.ans new file mode 100644 index 00000000..519e5713 --- /dev/null +++ b/LibreOJ/2600/data/qc1.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915e6e515e2ab9101dd13757a499c7e18334c618db40ac72906f86038122a593 +size 6 diff --git a/LibreOJ/2600/data/qc1.in b/LibreOJ/2600/data/qc1.in new file mode 100644 index 00000000..f82201e5 --- /dev/null +++ b/LibreOJ/2600/data/qc1.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b2166f59be6f974b7dcec44f5489812687001e9115d1920510dc8826813f54 +size 167 diff --git a/LibreOJ/2600/data/qc10.ans b/LibreOJ/2600/data/qc10.ans new file mode 100644 index 00000000..a9c497b2 --- /dev/null +++ b/LibreOJ/2600/data/qc10.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e1dececc4da9518029f4b852d0c1165353f41ad353232b9cdb11a102bcb6e0 +size 10 diff --git a/LibreOJ/2600/data/qc10.in b/LibreOJ/2600/data/qc10.in new file mode 100644 index 00000000..71d1f5eb --- /dev/null +++ b/LibreOJ/2600/data/qc10.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11fdc3fa5689d2070172daa6d7b86ea9162d328a047e5f9d5c72f26f7399036 +size 104237 diff --git a/LibreOJ/2600/data/qc11.ans b/LibreOJ/2600/data/qc11.ans new file mode 100644 index 00000000..6bcfd805 --- /dev/null +++ b/LibreOJ/2600/data/qc11.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364a6e5d56a488e99a4afa52bc0cf09aff3c11103c9d3e8bdde19946a0ea90ef +size 8 diff --git a/LibreOJ/2600/data/qc11.in b/LibreOJ/2600/data/qc11.in new file mode 100644 index 00000000..6fb08b54 --- /dev/null +++ b/LibreOJ/2600/data/qc11.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43fa55429af4ea30ed09647e0d7bc1a560fd2bb37f31d8fd4e4a789829f7ddfe +size 168063 diff --git a/LibreOJ/2600/data/qc12.ans b/LibreOJ/2600/data/qc12.ans new file mode 100644 index 00000000..9c405cf6 --- /dev/null +++ b/LibreOJ/2600/data/qc12.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c8f7f53ff89c2abc1b8f669e824e5d9d65d1539e2490f3765ef05419d74cef +size 11 diff --git a/LibreOJ/2600/data/qc12.in b/LibreOJ/2600/data/qc12.in new file mode 100644 index 00000000..15d67b95 --- /dev/null +++ b/LibreOJ/2600/data/qc12.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7aee0b7cff38de5ee397d0285e484b2114c9ceb8da2ed7af940dd0057032be2 +size 187287 diff --git a/LibreOJ/2600/data/qc13.ans b/LibreOJ/2600/data/qc13.ans new file mode 100644 index 00000000..c89172aa --- /dev/null +++ b/LibreOJ/2600/data/qc13.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67a778c55535ff535fa87f927e95f1b0eec4d5e15e35922a7fcce35a09fd87f +size 11 diff --git a/LibreOJ/2600/data/qc13.in b/LibreOJ/2600/data/qc13.in new file mode 100644 index 00000000..18657cd0 --- /dev/null +++ b/LibreOJ/2600/data/qc13.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02ff5ea585d91bf2745ac1c4908aa5db65d68f8879fa91549de6ed281efb170 +size 155819 diff --git a/LibreOJ/2600/data/qc14.ans b/LibreOJ/2600/data/qc14.ans new file mode 100644 index 00000000..0cde8377 --- /dev/null +++ b/LibreOJ/2600/data/qc14.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98177d71a68a9386e0b655314cc5fe29a1209b5897e83b28b6e5f97d6d12b3bc +size 11 diff --git a/LibreOJ/2600/data/qc14.in b/LibreOJ/2600/data/qc14.in new file mode 100644 index 00000000..d60b811b --- /dev/null +++ b/LibreOJ/2600/data/qc14.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047b5bce6313f804fb5f0197b2a71844c055f9ec503c7e35668fdce7b525f7b5 +size 210652 diff --git a/LibreOJ/2600/data/qc15.ans b/LibreOJ/2600/data/qc15.ans new file mode 100644 index 00000000..65ed5a3c --- /dev/null +++ b/LibreOJ/2600/data/qc15.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a3a6e2edbc4bc8aad7838f100c2cfa4d003ad05acfde8a9d3ef79d7365aedb +size 12 diff --git a/LibreOJ/2600/data/qc15.in b/LibreOJ/2600/data/qc15.in new file mode 100644 index 00000000..0fd7d43e --- /dev/null +++ b/LibreOJ/2600/data/qc15.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e634040ecfcdc5c7d8407f027c3befb6411285200019acadf36518e0342f80e +size 955219 diff --git a/LibreOJ/2600/data/qc16.ans b/LibreOJ/2600/data/qc16.ans new file mode 100644 index 00000000..d0d74ee9 --- /dev/null +++ b/LibreOJ/2600/data/qc16.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a26280ccd8d6b4f58309d3cc88640ef3a1e0e46d0628932101c0c01d0206b31 +size 12 diff --git a/LibreOJ/2600/data/qc16.in b/LibreOJ/2600/data/qc16.in new file mode 100644 index 00000000..bf7e3129 --- /dev/null +++ b/LibreOJ/2600/data/qc16.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8d4551a68afecc7754065868bfb134be80513378345aa1e91ab27eeb8448a1 +size 1344556 diff --git a/LibreOJ/2600/data/qc17.ans b/LibreOJ/2600/data/qc17.ans new file mode 100644 index 00000000..a4fb7cd3 --- /dev/null +++ b/LibreOJ/2600/data/qc17.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ef872a176871e0978944fc1841019d261fe691ccc175520f6a238c2b53e12a +size 12 diff --git a/LibreOJ/2600/data/qc17.in b/LibreOJ/2600/data/qc17.in new file mode 100644 index 00000000..6309214c --- /dev/null +++ b/LibreOJ/2600/data/qc17.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f70d4b2ebd4ac9837ec60124060223f1d8b7ae33d98f278392db23e87c589a +size 1911005 diff --git a/LibreOJ/2600/data/qc18.ans b/LibreOJ/2600/data/qc18.ans new file mode 100644 index 00000000..b63ad64e --- /dev/null +++ b/LibreOJ/2600/data/qc18.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b8c24d3b592cc616e242226f154d81f5cc7ec6507b21072cbdc32b5c7bf095 +size 12 diff --git a/LibreOJ/2600/data/qc18.in b/LibreOJ/2600/data/qc18.in new file mode 100644 index 00000000..a4343f02 --- /dev/null +++ b/LibreOJ/2600/data/qc18.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad7a53a64b8cf7a2ff4f20a56cf6184556e00fe272223d16241f70963c704d7 +size 2688882 diff --git a/LibreOJ/2600/data/qc19.ans b/LibreOJ/2600/data/qc19.ans new file mode 100644 index 00000000..535c42a3 --- /dev/null +++ b/LibreOJ/2600/data/qc19.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc30ae2e16bfc419faa27514da2a712316d738c46d11272b72a40cb16510119 +size 12 diff --git a/LibreOJ/2600/data/qc19.in b/LibreOJ/2600/data/qc19.in new file mode 100644 index 00000000..fdf5bb09 --- /dev/null +++ b/LibreOJ/2600/data/qc19.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d074862a1fc9a5e8965550910f5b60b84f502a0bacbb20514d776aa526c15c9 +size 2865830 diff --git a/LibreOJ/2600/data/qc2.ans b/LibreOJ/2600/data/qc2.ans new file mode 100644 index 00000000..07ce10a0 --- /dev/null +++ b/LibreOJ/2600/data/qc2.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455c8ea0ba7ae39bd1a5f7289307d1b86d9ed25be7ca2cc5f0552fd0aaf31417 +size 7 diff --git a/LibreOJ/2600/data/qc2.in b/LibreOJ/2600/data/qc2.in new file mode 100644 index 00000000..0f74d740 --- /dev/null +++ b/LibreOJ/2600/data/qc2.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f3e27b2a3c6bd73679c4c9be58d0ce94ff22c3619d2701bb6acb6e240dae2b +size 515 diff --git a/LibreOJ/2600/data/qc20.ans b/LibreOJ/2600/data/qc20.ans new file mode 100644 index 00000000..da008352 --- /dev/null +++ b/LibreOJ/2600/data/qc20.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2f1133687d7c2a8b7c270f5fef741e8a0ca6e17854b0fbc895c275a38dd9d2 +size 11 diff --git a/LibreOJ/2600/data/qc20.in b/LibreOJ/2600/data/qc20.in new file mode 100644 index 00000000..fcaa980f --- /dev/null +++ b/LibreOJ/2600/data/qc20.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1e76c6b04cc57e5541141e347cb6a656d9e9fdddc572621ac55b01e423f9ff +size 3821494 diff --git a/LibreOJ/2600/data/qc3.ans b/LibreOJ/2600/data/qc3.ans new file mode 100644 index 00000000..c053acfc --- /dev/null +++ b/LibreOJ/2600/data/qc3.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ea9eadf95effe121c5c01ae6d08e875592509b49fa42288b1de142bfb43185 +size 8 diff --git a/LibreOJ/2600/data/qc3.in b/LibreOJ/2600/data/qc3.in new file mode 100644 index 00000000..5a87b19b --- /dev/null +++ b/LibreOJ/2600/data/qc3.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c228f049002688b4b38dccede832fca6c14eb195eeb6d89324a32248fd0b8556 +size 1442 diff --git a/LibreOJ/2600/data/qc4.ans b/LibreOJ/2600/data/qc4.ans new file mode 100644 index 00000000..df48904c --- /dev/null +++ b/LibreOJ/2600/data/qc4.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f48f99217f0f9388d11aa7e30fa57a66ae84326667ad67b49c42932563353b8 +size 8 diff --git a/LibreOJ/2600/data/qc4.in b/LibreOJ/2600/data/qc4.in new file mode 100644 index 00000000..a70db37f --- /dev/null +++ b/LibreOJ/2600/data/qc4.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a17eba3a4e265245c130c74be84b05579dade77f6d8aaff6c42a9239fe8979 +size 3499 diff --git a/LibreOJ/2600/data/qc5.ans b/LibreOJ/2600/data/qc5.ans new file mode 100644 index 00000000..aad58632 --- /dev/null +++ b/LibreOJ/2600/data/qc5.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3068b8438124b3e5dacbbe111198c995e958bebc0dfb4bfd8d79f8f3eb0cae04 +size 9 diff --git a/LibreOJ/2600/data/qc5.in b/LibreOJ/2600/data/qc5.in new file mode 100644 index 00000000..23b5fa94 --- /dev/null +++ b/LibreOJ/2600/data/qc5.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eaa1572d30c79583fd7812e8d52a8515206809393745783fded4211452e3503 +size 7045 diff --git a/LibreOJ/2600/data/qc6.ans b/LibreOJ/2600/data/qc6.ans new file mode 100644 index 00000000..19be7fee --- /dev/null +++ b/LibreOJ/2600/data/qc6.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8c3b8977524a2a4b3e62ff578bb6f668438538d5ef9debce80132c1bf3e79a +size 9 diff --git a/LibreOJ/2600/data/qc6.in b/LibreOJ/2600/data/qc6.in new file mode 100644 index 00000000..60afa42c --- /dev/null +++ b/LibreOJ/2600/data/qc6.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa24063f86ee777d18d4079384adc252bb5d1bce8b2242080716bb1da9034693 +size 9444 diff --git a/LibreOJ/2600/data/qc7.ans b/LibreOJ/2600/data/qc7.ans new file mode 100644 index 00000000..7220c14f --- /dev/null +++ b/LibreOJ/2600/data/qc7.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4fe158a158306f8b1806dd7788de7d72dce5bb9ece409974135dd431664c064 +size 9 diff --git a/LibreOJ/2600/data/qc7.in b/LibreOJ/2600/data/qc7.in new file mode 100644 index 00000000..57a5cbfd --- /dev/null +++ b/LibreOJ/2600/data/qc7.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80502d7bf903f62644750e29795b360c75c28cb3583bad600e0056fbc8b6e79c +size 19087 diff --git a/LibreOJ/2600/data/qc8.ans b/LibreOJ/2600/data/qc8.ans new file mode 100644 index 00000000..20e9eb90 --- /dev/null +++ b/LibreOJ/2600/data/qc8.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9261d576b12f64fdeb491b44ea7671d006c4f329ff885fd3216c8b6de6e32c +size 11 diff --git a/LibreOJ/2600/data/qc8.in b/LibreOJ/2600/data/qc8.in new file mode 100644 index 00000000..16a7af27 --- /dev/null +++ b/LibreOJ/2600/data/qc8.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90ae70c39f8864a7133786c02fb387b0e81a54b6f1ba948ce94cc655b69eb47 +size 67374 diff --git a/LibreOJ/2600/data/qc9.ans b/LibreOJ/2600/data/qc9.ans new file mode 100644 index 00000000..dff84d47 --- /dev/null +++ b/LibreOJ/2600/data/qc9.ans @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74838d539e57080c809c963245e5817fe3ac7c580ad2b2d46500e1acb089084d +size 7 diff --git a/LibreOJ/2600/data/qc9.in b/LibreOJ/2600/data/qc9.in new file mode 100644 index 00000000..a1f73e90 --- /dev/null +++ b/LibreOJ/2600/data/qc9.in @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bbe24f423c59a6a5a57eebab08cc172f2417702c99c44973d41919adcc9d2c +size 56526