結果

問題 No.2374 ASKT Subsequences
ユーザー hitonanodehitonanode
提出日時 2023-07-13 23:54:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,066 bytes
コンパイル時間 1,235 ms
コンパイル使用メモリ 112,572 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 09:18:39
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 5 ms
6,944 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

#include <atcoder/fenwicktree>


// a
// a + k + 10
// a + 10
// a + k + 11

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    int N;
    cin >> N;
    vector<int> A(N);
    for (auto &x : A) cin >> x;

    vector<int> idx(N);
    for (int i = 0; i < N; ++i) idx.at(i) = i;
    stable_sort(idx.begin(), idx.end(), [&](int i, int j) { return A.at(i) < A.at(j); });

    atcoder::fenwick_tree<int> fw(N);

    long long ret = 0;
    for (const int i : idx) {
        const int sum = fw.sum(0, i + 1);
        for (int j = i + 1; j < N; ++j) {
            if (A.at(j) == A.at(i) + 1) ret += sum;
        }
        vector<int> cntr(2001);
        int nbad = 0;
        for (int i1 = i - 1; i1 >= 0; --i1) {
            if (A.at(i1) + 10 == A.at(i)) {
                fw.add(i1, 1);
                fw.add(i, -1);
                ret -= nbad;
            }
            nbad += cntr.at(A.at(i1) + 1);
            cntr.at(A.at(i1))++;
        }
    }
    cout << ret << '\n';
}
0