結果

問題 No.2956 Substitute with Average
ユーザー GOTKAKOGOTKAKO
提出日時 2024-11-08 22:55:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,912 ms / 3,000 ms
コード長 1,738 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 222,220 KB
実行使用メモリ 14,340 KB
最終ジャッジ日時 2024-11-08 22:55:34
合計ジャッジ時間 21,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1,912 ms
14,260 KB
testcase_11 AC 1,888 ms
14,200 KB
testcase_12 AC 1,824 ms
14,340 KB
testcase_13 AC 1,785 ms
14,264 KB
testcase_14 AC 1,849 ms
14,136 KB
testcase_15 AC 1,882 ms
14,156 KB
testcase_16 AC 1,833 ms
14,320 KB
testcase_17 AC 1,877 ms
14,276 KB
testcase_18 AC 17 ms
5,248 KB
testcase_19 AC 60 ms
10,056 KB
testcase_20 AC 120 ms
12,084 KB
testcase_21 AC 119 ms
12,144 KB
testcase_22 AC 18 ms
5,248 KB
testcase_23 AC 17 ms
5,248 KB
testcase_24 AC 730 ms
14,096 KB
testcase_25 AC 670 ms
14,068 KB
testcase_26 AC 783 ms
14,076 KB
testcase_27 AC 637 ms
14,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

random_device rnd;
mt19937 mt(rnd());

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long N; cin >> N;
    while(true){
    vector<long long> A(N);
    for(auto &a : A) cin >> a;//a = mt()%30+1;

    vector<vector<long long>> sepa(31);
    for(long long i=0; i<N; i++) sepa.at(A.at(i)).push_back(i);

    long long answer = 1;
    for(long long i=1; i<=30; i++){
        long long pos = 0,zero = 0;
        unordered_map<long long,long long> M;
        for(auto &p : sepa.at(i)){
            while(pos < p) M[zero]++,zero -= A.at(pos++)-i;
            answer += p-M[zero];
        }
    }
    long long inf = 1001001001;
    for(long long i=1; i<=30; i++){
        long long pos = N-1,zero = 0;
        reverse(sepa.at(i).begin(),sepa.at(i).end());
        unordered_map<long long,long long> M,M2;
        for(auto &p : sepa.at(i)){
            while(pos > p) M[zero]++,M2[zero+inf*A.at(pos)]++,zero -= A.at(pos--)-i;
            answer -= M[zero]-M2[zero+inf*A.at(p)];
        }
    }
    cout << answer << endl;
    return 0;

    long long answer2 = 1;
    set<vector<pair<long long,int>>> S;
    for(int l=0; l<N; l++) for(int r=l; r<N; r++){
        vector<pair<long long,int>> B(N);
        for(int i=0; i<N; i++) B.at(i) = {A.at(i),1};
        long long sum = 0;
        for(int i=l; i<=r; i++) sum += A.at(i);
        long long g = gcd(sum,r-l+1);
        sum /= g; 
        for(int i=l; i<=r; i++) B.at(i) = {sum,(r-l+1)/g};
        S.insert(B);
    }
    cout << S.size() << endl;
    if(answer != S.size()){
        for(auto &a : A) cout << a << " "; cout << endl;
        cout << answer << " " << S.size() << endl;
        break;
    }
    }
}
0