結果

問題 No.2956 Substitute with Average
ユーザー GOTKAKOGOTKAKO
提出日時 2024-11-08 22:54:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,752 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 222,912 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-11-08 22:54:56
合計ジャッジ時間 22,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 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 2,956 ms
17,024 KB
testcase_11 AC 2,905 ms
17,152 KB
testcase_12 AC 2,970 ms
17,280 KB
testcase_13 AC 2,885 ms
17,152 KB
testcase_14 AC 2,961 ms
17,024 KB
testcase_15 AC 2,976 ms
17,024 KB
testcase_16 AC 2,992 ms
17,408 KB
testcase_17 TLE -
testcase_18 AC 11 ms
6,816 KB
testcase_19 AC 129 ms
12,640 KB
testcase_20 AC 232 ms
14,472 KB
testcase_21 AC 217 ms
15,408 KB
testcase_22 AC 12 ms
6,816 KB
testcase_23 AC 11 ms
6,820 KB
testcase_24 AC 1,276 ms
17,268 KB
testcase_25 AC 1,254 ms
16,836 KB
testcase_26 AC 1,523 ms
17,060 KB
testcase_27 AC 1,158 ms
16,964 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;
        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());
        map<long long,long long> M;
        map<long long,long long> 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