結果

問題 No.2956 Substitute with Average
ユーザー vjudge1vjudge1
提出日時 2024-11-13 12:12:32
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 3,000 ms
コード長 896 bytes
コンパイル時間 3,603 ms
コンパイル使用メモリ 272,940 KB
実行使用メモリ 17,068 KB
最終ジャッジ日時 2024-11-13 12:12:41
合計ジャッジ時間 6,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 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,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 43 ms
15,600 KB
testcase_11 AC 42 ms
15,468 KB
testcase_12 AC 42 ms
15,596 KB
testcase_13 AC 42 ms
15,724 KB
testcase_14 AC 41 ms
15,344 KB
testcase_15 AC 42 ms
15,600 KB
testcase_16 AC 42 ms
15,724 KB
testcase_17 AC 44 ms
15,600 KB
testcase_18 AC 49 ms
15,852 KB
testcase_19 AC 43 ms
15,596 KB
testcase_20 AC 46 ms
15,724 KB
testcase_21 AC 43 ms
15,592 KB
testcase_22 AC 56 ms
17,004 KB
testcase_23 AC 52 ms
16,496 KB
testcase_24 AC 43 ms
15,596 KB
testcase_25 AC 43 ms
17,068 KB
testcase_26 AC 44 ms
15,468 KB
testcase_27 AC 44 ms
15,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using i64 = long long;
const int N = 1e5 + 10, L = 3e6 + 10;

int n, a[N], p[N], cnt[L * 2];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    cin >> n;
    for(int i = 1; i <= n; i ++)
        cin >> a[i];
    
    i64 ans = n * (n + 1ll) / 2 + 1;
    for(int t = 1; t <= 30; t ++) {
        i64 x = 0, y = 0;
        for(int i = 1; i <= n; i ++) {
            p[i] = p[i - 1] + a[i] - t;
            if(a[i] != t) {
                cnt[L + p[i - 1]] ++;
                y += cnt[L + p[i]];
            }
        }

        for(int i = 0; i < n; i ++)
            cnt[L + p[i]] = 0;

        for(int i = 1; i <= n; i ++) {
            cnt[L + p[i - 1]] ++;
            x += cnt[L + p[i]];
        }

        for(int i = 0; i < n; i ++)
            cnt[L + p[i]] = 0;
        
        ans -= x - y;
    }
    cout << ans << "\n";
}
0