結果

問題 No.1977 Extracting at Constant Intervals
ユーザー SSRSSSRS
提出日時 2022-06-10 21:50:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,349 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 176,672 KB
実行使用メモリ 63,804 KB
最終ジャッジ日時 2024-10-09 09:41:21
合計ジャッジ時間 5,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 17 ms
10,624 KB
testcase_03 AC 126 ms
57,100 KB
testcase_04 AC 15 ms
11,008 KB
testcase_05 AC 137 ms
63,804 KB
testcase_06 AC 75 ms
35,980 KB
testcase_07 AC 96 ms
46,512 KB
testcase_08 AC 60 ms
38,596 KB
testcase_09 AC 30 ms
17,920 KB
testcase_10 AC 92 ms
51,948 KB
testcase_11 AC 9 ms
7,296 KB
testcase_12 AC 16 ms
11,904 KB
testcase_13 AC 78 ms
46,988 KB
testcase_14 AC 99 ms
61,860 KB
testcase_15 AC 48 ms
29,888 KB
testcase_16 AC 94 ms
57,508 KB
testcase_17 AC 101 ms
62,468 KB
testcase_18 AC 45 ms
28,392 KB
testcase_19 AC 23 ms
15,872 KB
testcase_20 AC 95 ms
59,172 KB
testcase_21 AC 84 ms
52,544 KB
testcase_22 AC 94 ms
57,836 KB
testcase_23 AC 17 ms
12,672 KB
testcase_24 AC 82 ms
51,536 KB
testcase_25 AC 8 ms
7,424 KB
testcase_26 AC 13 ms
10,240 KB
testcase_27 AC 45 ms
29,872 KB
testcase_28 AC 22 ms
16,000 KB
testcase_29 AC 47 ms
31,096 KB
testcase_30 AC 86 ms
54,084 KB
testcase_31 AC 42 ms
27,344 KB
testcase_32 AC 48 ms
30,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int LOG = 50;
const long long INF = 2000000000000000000;
int main(){
  int N, M;
  long long L;
  cin >> N >> M >> L;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<vector<int>> nxt(LOG, vector<int>(N, 0));
  vector<vector<long long>> sum(LOG, vector<long long>(N, 0));
  for (int i = 0; i < N; i++){
    nxt[0][i] = (i + L) % N;
    sum[0][i] = A[i];
  }
  for (int i = 0; i < LOG - 1; i++){
    for (int j = 0; j < N; j++){
      nxt[i + 1][j] = nxt[i][nxt[i][j]];
      sum[i + 1][j] = sum[i][j] + sum[i][nxt[i][j]];
    }
  }
  vector<long long> a(N, 0), b(N, 0);
  for (int i = 0; i < N; i++){
    long long R = (long long) N * M / L;
    int p = i;
    for (int j = 0; j < LOG; j++){
      if ((R >> j & 1) == 1){
        a[i] += sum[j][p];
        p = nxt[j][p];
      }
    }
  }
  for (int i = 0; i < N; i++){
    long long R = (long long) N * M / L + 1;
    int p = i;
    for (int j = 0; j < LOG; j++){
      if ((R >> j & 1) == 1){
        b[i] += sum[j][p];
        p = nxt[j][p];
      }
    }
  }
  long long r = (long long) M * N % L;
  long long ans = -INF;
  for (int i = 0; i < min(r, (long long) N); i++){
    ans = max(ans, b[i]);
  }
  for (long long i = max(r, L - N); i < L; i++){
    ans = max(ans, a[i % N]);
  }
  cout << ans << endl;
}
0