結果

問題 No.2374 ASKT Subsequences
ユーザー umezoumezo
提出日時 2023-07-09 07:13:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 2,659 ms
コンパイル使用メモリ 206,108 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-07-23 03:48:28
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 6 ms
7,552 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 8 ms
9,216 KB
testcase_15 AC 10 ms
11,008 KB
testcase_16 AC 7 ms
8,192 KB
testcase_17 AC 13 ms
13,312 KB
testcase_18 AC 21 ms
18,816 KB
testcase_19 AC 19 ms
17,536 KB
testcase_20 AC 35 ms
24,192 KB
testcase_21 AC 40 ms
26,752 KB
testcase_22 AC 30 ms
22,016 KB
testcase_23 AC 21 ms
18,816 KB
testcase_24 AC 21 ms
18,944 KB
testcase_25 AC 17 ms
18,944 KB
testcase_26 AC 65 ms
34,688 KB
testcase_27 AC 33 ms
34,560 KB
testcase_28 AC 38 ms
34,560 KB
testcase_29 AC 32 ms
34,560 KB
testcase_30 AC 34 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

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

  int n;
  cin>>n;
  vector<int> A(n);
  rep(i,n) cin>>A[i];
  
  vector<vector<int>> L(n,vector<int> (2001)),R(n,vector<int> (2001));
  L[0][A[0]]=1,R[n-1][A[n-1]]=1;
  for(int i=1;i<n;i++){
    for(int j=1;j<=2000;j++) L[i][j]=L[i-1][j];
    L[i][A[i]]++;
  }
  for(int i=n-2;i>=0;i--){
    for(int j=1;j<=2000;j++) R[i][j]=R[i+1][j];
    R[i][A[i]]++;
  }
  ll ans=0;
  for(int i=1;i<n-2;i++){
    for(int j=i+1;j<n-1;j++){
      if(A[i]<=A[j]) continue;
      if(A[j]-10<1) continue;
      if(A[i]+1>2000) continue;
      ans+=(ll)L[i-1][A[j]-10]*R[j+1][A[i]+1];
    }
  }
  cout<<ans<<endl;

  return 0;
}
0