結果

問題 No.2759 Take Pictures, Elements?
ユーザー VvyLwVvyLw
提出日時 2024-05-18 01:22:03
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 1,399 ms
コンパイル使用メモリ 121,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-18 01:22:07
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <ranges>
constexpr int64_t INF = (1LL << 61) - 1;
template <class T, class U> constexpr inline bool chmin(T& a, const U& b) noexcept { if(a>b){ a=b; return 1; } return 0; }
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int n, q;
    std::cin >> n >> q;
    std::vector<int> a(n), b(q);
    for(auto &el: a) {
        std::cin >> el;
    }
    for(auto &el: b) {
        std::cin >> el;
    }
    std::vector<int64_t> dp(n, INF);
    dp[0] = 0;
    for(const auto e: b) {
        for(const auto i: std::views::iota(0, n - 1)) {
            chmin(dp[i + 1], dp[i] + 1);
        }
        for(const auto i: std::views::iota(1, n) | std::views::reverse) {
            chmin(dp[i - 1], dp[i] + 1);
        }
        for(const auto i: std::views::iota(0, n)) {
            if(a[i] != e) {
                dp[i] = INF;
            }
        }
    }
    std::cout << *std::ranges::min_element(dp) << '\n';
}
0