結果

問題 No.2374 ASKT Subsequences
ユーザー tnakao0123tnakao0123
提出日時 2023-07-11 10:11:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 41,984 KB
実行使用メモリ 32,856 KB
最終ジャッジ日時 2024-09-13 00:11:19
合計ジャッジ時間 1,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,948 KB
testcase_09 AC 4 ms
7,192 KB
testcase_10 AC 7 ms
14,384 KB
testcase_11 AC 4 ms
8,524 KB
testcase_12 AC 4 ms
7,360 KB
testcase_13 AC 4 ms
8,452 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 5 ms
7,368 KB
testcase_16 AC 4 ms
8,396 KB
testcase_17 AC 9 ms
15,788 KB
testcase_18 AC 11 ms
14,920 KB
testcase_19 AC 9 ms
14,448 KB
testcase_20 AC 28 ms
31,636 KB
testcase_21 AC 26 ms
32,856 KB
testcase_22 AC 21 ms
30,340 KB
testcase_23 AC 10 ms
16,488 KB
testcase_24 AC 12 ms
14,588 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 36 ms
30,332 KB
testcase_27 AC 35 ms
32,292 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 45 ms
25,472 KB
testcase_30 AC 9 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2374.cc:  No.2374 ASKT Subsequences - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 2000;
const int MAX_A = 2000;

/* typedef */

typedef long long ll;

/* global variables */

int as[MAX_N];
ll dp1[MAX_A], dp2[MAX_A][MAX_A], dp3[MAX_A];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i), as[i]--;

  // a2=a1+k+10, a3=a1+10, a4=a1+k+11=a2+1
  
  ll dp4 = 0;
  for (int i = 0; i < n; i++) {
    int ai = as[i];

    if (ai > 0) dp4 += dp3[ai - 1];

    if (ai >= 10)
      for (int aj = 0; aj < MAX_A; aj++) dp3[aj] += dp2[ai - 10][aj];

    for (int aj = 0; aj < ai - 10; aj++) dp2[aj][ai] += dp1[aj];

    dp1[ai]++;
  }

  printf("%lld\n", dp4);
  return 0;
}
0