結果

問題 No.2374 ASKT Subsequences
ユーザー karinohitokarinohito
提出日時 2023-07-07 22:05:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 205,040 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-07-21 18:07:46
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 6 ms
7,680 KB
testcase_12 AC 4 ms
6,144 KB
testcase_13 AC 4 ms
5,760 KB
testcase_14 AC 8 ms
9,600 KB
testcase_15 AC 10 ms
11,264 KB
testcase_16 AC 7 ms
8,320 KB
testcase_17 AC 12 ms
13,440 KB
testcase_18 AC 19 ms
18,944 KB
testcase_19 AC 17 ms
17,792 KB
testcase_20 AC 27 ms
24,448 KB
testcase_21 AC 31 ms
27,008 KB
testcase_22 AC 25 ms
22,272 KB
testcase_23 AC 20 ms
19,200 KB
testcase_24 AC 20 ms
19,200 KB
testcase_25 AC 16 ms
19,200 KB
testcase_26 AC 46 ms
34,944 KB
testcase_27 AC 33 ms
34,688 KB
testcase_28 AC 38 ms
34,816 KB
testcase_29 AC 32 ms
34,816 KB
testcase_30 AC 36 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using vll =vector<ll>;
using vvll =vector<vll>;
#define rep(i,n) for(ll i=(ll)(0); i<(ll(n)); ++i)
#define all(x) (x).begin(), (x).end()

int main(){
    ll N;
    cin>>N;
    vvll A(2001,vll(N+1));
    vll B(N);
    rep(i,N){
        cin>>B[i];
        A[B[i]][i+1]++;
    }
    rep(i,2001){
        rep(j,N)A[i][j+1]+=A[i][j];
    }

    ll an=0;
    rep(i,N)rep(j,i){
        ll a2=B[j];
        ll a3=B[i];
        ll k=a2-a3;
        if(k<=0)continue;
        ll a1=a2-k-10;
        ll a4=a3+k+1;
        if(a1<=0||a4>=2001)continue;
        ll n1=A[a1][j];
        ll n4=A[a4][N]-A[a4][i];
        an+=n1*n4;
    }
    cout<<an<<endl;
}
0