結果

問題 No.1996 <><
ユーザー trineutrontrineutron
提出日時 2022-07-01 22:10:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 217,680 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-05-04 16:32:46
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 55 ms
12,288 KB
testcase_12 AC 174 ms
20,992 KB
testcase_13 AC 159 ms
21,120 KB
testcase_14 AC 147 ms
20,480 KB
testcase_15 AC 130 ms
18,048 KB
testcase_16 AC 102 ms
16,128 KB
testcase_17 AC 112 ms
18,176 KB
testcase_18 AC 52 ms
11,904 KB
testcase_19 AC 64 ms
13,440 KB
testcase_20 AC 68 ms
13,056 KB
testcase_21 AC 103 ms
16,256 KB
testcase_22 AC 120 ms
18,432 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 54 ms
12,032 KB
testcase_25 AC 25 ms
7,808 KB
testcase_26 AC 42 ms
10,368 KB
testcase_27 AC 9 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 23 ms
7,424 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/fenwicktree>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint1000000007;

void compress(vector<int> &a) {
    auto sorted{a};
    sort(sorted.begin(), sorted.end());
    sorted.erase(unique(sorted.begin(), sorted.end()), sorted.end());
    for (auto &&x : a) {
        x = lower_bound(sorted.begin(), sorted.end(), x) - sorted.begin();
    }
}

int main() {
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a.at(i);
    }
    compress(a);
    string s;
    cin >> s;

    vector dp(n + 1, vector<mint>(k + 1));
    vector t(k + 1, fenwick_tree<mint>(n));
    for (int i = 0; i < n; i++) {
        dp.at(i + 1).at(0) = 1;
        t.at(0).add(a.at(i), 1);
        for (int j = 0; j <= k; j++) {
            dp.at(i + 1).at(j) += dp.at(i).at(j);
            if (j == k) continue;
            mint d;
            if (s.at(j) == '<') {
                d = t.at(j).sum(0, a.at(i));
            } else {
                d = t.at(j).sum(a.at(i) + 1, n);
            }
            dp.at(i + 1).at(j + 1) += d;
            t.at(j + 1).add(a.at(i), d);
        }
    }

    cout << dp.back().back().val() << endl;
    return 0;
}
0