結果
問題 | No.2055 12x34... |
ユーザー | pengin_2000 |
提出日時 | 2022-08-21 13:08:22 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 146 ms / 2,000 ms |
コード長 | 1,749 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 12,844 KB |
最終ジャッジ日時 | 2024-10-10 06:02:07 |
合計ジャッジ時間 | 5,532 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,048 KB |
testcase_01 | AC | 2 ms
8,044 KB |
testcase_02 | AC | 27 ms
10,864 KB |
testcase_03 | AC | 57 ms
11,764 KB |
testcase_04 | AC | 80 ms
11,916 KB |
testcase_05 | AC | 87 ms
12,272 KB |
testcase_06 | AC | 77 ms
12,732 KB |
testcase_07 | AC | 59 ms
12,208 KB |
testcase_08 | AC | 44 ms
11,028 KB |
testcase_09 | AC | 102 ms
12,488 KB |
testcase_10 | AC | 106 ms
12,788 KB |
testcase_11 | AC | 40 ms
11,248 KB |
testcase_12 | AC | 79 ms
11,348 KB |
testcase_13 | AC | 135 ms
12,360 KB |
testcase_14 | AC | 50 ms
11,116 KB |
testcase_15 | AC | 50 ms
11,120 KB |
testcase_16 | AC | 146 ms
12,472 KB |
testcase_17 | AC | 46 ms
11,020 KB |
testcase_18 | AC | 84 ms
12,084 KB |
testcase_19 | AC | 18 ms
8,560 KB |
testcase_20 | AC | 9 ms
8,172 KB |
testcase_21 | AC | 20 ms
8,556 KB |
testcase_22 | AC | 110 ms
12,800 KB |
testcase_23 | AC | 116 ms
12,784 KB |
testcase_24 | AC | 109 ms
12,784 KB |
testcase_25 | AC | 116 ms
12,764 KB |
testcase_26 | AC | 115 ms
12,788 KB |
testcase_27 | AC | 109 ms
12,780 KB |
testcase_28 | AC | 118 ms
12,756 KB |
testcase_29 | AC | 112 ms
12,784 KB |
testcase_30 | AC | 116 ms
12,784 KB |
testcase_31 | AC | 115 ms
12,784 KB |
testcase_32 | AC | 116 ms
12,784 KB |
testcase_33 | AC | 128 ms
12,836 KB |
testcase_34 | AC | 131 ms
12,756 KB |
testcase_35 | AC | 128 ms
12,656 KB |
testcase_36 | AC | 131 ms
12,720 KB |
testcase_37 | AC | 130 ms
12,840 KB |
testcase_38 | AC | 129 ms
12,844 KB |
testcase_39 | AC | 131 ms
12,836 KB |
testcase_40 | AC | 129 ms
12,740 KB |
testcase_41 | AC | 132 ms
12,788 KB |
testcase_42 | AC | 131 ms
12,712 KB |
ソースコード
#include<stdio.h> long long int h[400005], l; int comp_h(long long int a, long long int b) { if (h[a] > h[b]) return 1; else return -1; } void swap_h(long long int a, long long int b) { long long int f = h[a]; h[a] = h[b]; h[b] = f; return; } void push(long long int ne) { h[l] = ne; long long int p = l; l++; for (; p > 0; p = (p - 1) / 2) if (comp_h((p - 1) / 2, p) > 0) swap_h((p - 1) / 2, p); return; } long long int pop() { l--; swap_h(0, l); long long int p = 0; for (;;) { if (2 * p + 2 < l) { if (comp_h(2 * p + 1, 2 * p + 2) > 0) { if (comp_h(p, 2 * p + 2) > 0) swap_h(p, 2 * p + 2); p = 2 * p + 2; } else { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } } else if (2 * p + 1 < l) { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } else break; } return h[l]; } long long int n; long long int s[400005]; long long int fined_idx(long long int v) { long long int min, mid, max; min = -1; max = 2 * n; while (max - min > 1) { mid = (max + min) / 2; if (s[mid] < v) min = mid; else max = mid; } return max; } long long int a[200005]; long long int dp[400005]; int main() { scanf("%lld", &n); long long int i; for (i = 0; i < n; i++) scanf("%lld", &a[i]); long long int p = 998244353; l = 0; for (i = 0; i < n; i++) push(a[i]); for (i = 0; i < n; i++) push(a[i] - 1); for (i = 0; i < 2 * n; i++) s[i] = pop(); for (i = 0; i < 2 * n; i++) dp[i] = 0; long long int ans = 0; for (i = 0; i < n; i++) { ans += dp[fined_idx(a[i] - 1)]; ans %= p; dp[fined_idx(a[i])] += dp[fined_idx(a[i] - 1)] + 1; dp[fined_idx(a[i])] %= p; } printf("%lld\n", ans); return 0; }