結果

問題 No.2956 Substitute with Average
ユーザー ripityripity
提出日時 2024-11-08 22:53:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,523 ms / 3,000 ms
コード長 599 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 209,908 KB
実行使用メモリ 13,552 KB
最終ジャッジ日時 2024-11-08 22:53:27
合計ジャッジ時間 22,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 999 ms
13,056 KB
testcase_11 AC 1,001 ms
13,012 KB
testcase_12 AC 936 ms
13,060 KB
testcase_13 AC 987 ms
13,056 KB
testcase_14 AC 964 ms
12,996 KB
testcase_15 AC 972 ms
13,184 KB
testcase_16 AC 1,067 ms
13,056 KB
testcase_17 AC 1,018 ms
13,016 KB
testcase_18 AC 1,358 ms
13,424 KB
testcase_19 AC 1,153 ms
13,424 KB
testcase_20 AC 1,255 ms
13,428 KB
testcase_21 AC 1,171 ms
13,552 KB
testcase_22 AC 1,390 ms
13,424 KB
testcase_23 AC 1,523 ms
13,400 KB
testcase_24 AC 994 ms
13,348 KB
testcase_25 AC 1,039 ms
13,480 KB
testcase_26 AC 1,003 ms
13,356 KB
testcase_27 AC 948 ms
13,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N;
  cin >> N;
  vector<int> A(N + 1);
  for(int i = 1; i <= N; i++) {
    cin >> A[i];
  }
  constexpr int M = 30;
  long long ans = (long long) N * (N + 1) / 2;
  for(int x = 1; x <= M; x++) {
    vector<int> B = A;
    for(int i = 1; i <= N; i++) {
      B[i] += B[i - 1] - x;
    }
    map<int, int> mp, mp2;
    for(int i = 0; i <= N; i++) {
      if(A[i] == x) {
        ans -= mp[B[i]] + mp2[B[i]];
        mp2[B[i]]++;
      }else {
        ans -= mp2[B[i]];
        mp[B[i]]++;
      }
    }
  }
  cout << ans + 1 << endl;
}
0