結果
問題 | No.1211 円環はお断り |
ユーザー | tnakao0123 |
提出日時 | 2020-08-31 16:35:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,696 bytes |
コンパイル時間 | 875 ms |
コンパイル使用メモリ | 95,672 KB |
実行使用メモリ | 18,628 KB |
最終ジャッジ日時 | 2024-11-16 04:10:08 |
合計ジャッジ時間 | 14,263 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 323 ms
11,652 KB |
testcase_14 | AC | 440 ms
15,652 KB |
testcase_15 | AC | 432 ms
14,236 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 355 ms
12,988 KB |
testcase_19 | WA | - |
testcase_20 | AC | 56 ms
6,816 KB |
testcase_21 | AC | 54 ms
7,368 KB |
testcase_22 | WA | - |
testcase_23 | AC | 371 ms
15,220 KB |
testcase_24 | WA | - |
testcase_25 | AC | 9 ms
6,824 KB |
testcase_26 | AC | 464 ms
15,576 KB |
testcase_27 | AC | 209 ms
9,344 KB |
testcase_28 | AC | 484 ms
16,320 KB |
testcase_29 | WA | - |
testcase_30 | AC | 496 ms
15,876 KB |
testcase_31 | WA | - |
testcase_32 | AC | 596 ms
17,740 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 684 ms
18,552 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 548 ms
18,496 KB |
testcase_41 | AC | 3 ms
6,820 KB |
testcase_42 | AC | 2 ms
6,820 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1211.cc: No.1211 円環はお断り - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100000; const int MAX_N2 = MAX_N * 2; const int BN = 18; const int INF = 1 << 30; /* typedef */ typedef long long ll; /* global variables */ int as[MAX_N2], ps[MAX_N2 + 1][BN]; /* subroutines */ bool check(int n, int k, int bn, ll m) { int n2 = n * 2; ll sum = 0; for (int i = 0, j = 0; i < n2; i++) { while (j < n2 && sum < m) sum += as[j++]; ps[i][0] = (sum >= m) ? j : INF; sum -= as[i]; } ps[n2][0] = INF; for (int b = 0; b + 1 < bn; b++) for (int i = 0; i < n2; i++) ps[i][b + 1] = (ps[i][b] < INF) ? ps[ps[i][b]][b] : INF; for (int i = 0; i < n; i++) { int j = i; for (int b = bn - 1; b >= 0 && j < INF; b--) if ((k >> b) & 1) j = ps[j][b]; if (j >= INF) break; if (j - i <= n) return true; } return false; } /* main */ int main() { int n, k; scanf("%d%d", &n, &k); int n2 = n * 2; ll asum = 0; for (int i = 0; i < n; i++) { scanf("%d", as + i), as[n + i] = as[i]; asum += as[i]; } int bn = 0; for (int bi = 1; bi <= n2; bn++, bi <<= 1); //printf("bn=%d\n", bn); ll m0 = 1, m1 = asum + 1; while (m0 + 1 < m1) { ll m = (m0 + m1) / 2; if (check(n, k, bn, m)) m0 = m; else m1 = m; } printf("%lld\n", m0); return 0; }