結果

問題 No.2759 Take Pictures, Elements?
ユーザー InTheBloomInTheBloom
提出日時 2024-05-17 22:33:58
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,503 bytes
コンパイル時間 1,601 ms
コンパイル使用メモリ 102,852 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-05-17 22:34:02
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,424 KB
testcase_01 AC 14 ms
7,552 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 7 ms
7,680 KB
testcase_10 AC 7 ms
7,552 KB
testcase_11 AC 7 ms
7,680 KB
testcase_12 AC 6 ms
7,680 KB
testcase_13 AC 6 ms
7,680 KB
testcase_14 AC 6 ms
7,424 KB
testcase_15 AC 6 ms
7,680 KB
testcase_16 AC 6 ms
7,424 KB
testcase_17 AC 6 ms
7,552 KB
testcase_18 AC 6 ms
7,680 KB
testcase_19 AC 7 ms
7,424 KB
testcase_20 AC 7 ms
7,424 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>

using namespace std;
using ll = long long;

constexpr int iINF = 1000000000;

int main () {
    int N, Q; cin >> N >> Q;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    vector<int> B(Q);
    for (int i = 0; i < Q; i++) cin >> B[i];

    // 要素はユニークでない可能性があるから、dpをやるしかなさそう。
    // 先頭i個をとって、場所jにいるときの最小コストというdpが思いつく。
    // 次の要素をわざとまたぐのは得ならないため、自分以上/自分未満の2箇所に遷移すればよい。
    // indexをvectorで持っておいて、二分探索する。

    map<int, vector<int>> index;
    for (int i = 0; i < N; i++) index[A[i]].push_back(i);

    vector<vector<int>> dp(Q + 1, vector<int>(N, iINF));
    dp[0][0] = 0;

    for (int i = 0; i < Q; i++) {
        for (int j = 0; j < N; j++) {
            if (dp[i][j] == iINF) continue;

            // 自分以上
            auto it = lower_bound(index[B[i]].begin(), index[B[i]].end(), j);
            if (it != index[B[i]].end()) dp[i + 1][*it] = min(dp[i + 1][*it], dp[i][j] + abs(j - *it));

            // 自分未満
            if (it != index[B[i]].begin()) {
                it--;
                dp[i + 1][*it] = min(dp[i + 1][*it], dp[i][j] + abs(j - *it));
            }
        }
    }

    int ans = iINF;
    for (auto v : dp[Q]) ans = min(ans, v);
    cout << ans << "\n";
}
0