結果

問題 No.2759 Take Pictures, Elements?
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-21 18:34:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 1,548 bytes
コンパイル時間 2,786 ms
コンパイル使用メモリ 213,964 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-21 18:34:05
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, Q, i, j, ni, nj, alt, C;
    cin >> N >> Q;
    vector<ll> A(N+1), B(Q+1);
    for (int i=1; i<=N; i++) cin >> A[i];
    for (int i=1; i<=Q; i++) cin >> B[i];

    /*
       dist(i, j) = 箱iを参照している状態でj枚目までの写真を撮るまでの最小ステップ数
    */

    deque<pair<ll, ll>> que;
    vector dist(N+1, vector<ll>(Q+1, 1e18));
    dist[1][0] = 0;
    que.push_back({1,0});
    
    while(!que.empty()){
        tie(i, j) = que.front();
        que.pop_front();
        if (i <= N-1){
            ni = i+1;
            nj = j;
            C = 1;
            alt = dist[i][j]+C;
            if (alt<dist[ni][nj]){
                dist[ni][nj] = alt;
                que.push_back({ni, nj});
            }
        }
        if (2 <= i){
            ni = i-1;
            nj = j;
            C = 1;
            alt = dist[i][j]+C;
            if (alt<dist[ni][nj]){
                dist[ni][nj] = alt;
                que.push_back({ni, nj});
            }
        }
        if (j+1<=Q && A[i] == B[j+1]){
            ni = i;
            nj = j+1;
            C = 0;
            alt = dist[i][j]+C;
            if (alt<dist[ni][nj]){
                dist[ni][nj] = alt;
                que.push_front({ni, nj});
            }
        }
    }

    ll ans = 1e18;
    for (int i=1; i<=N; i++) ans = min(ans, dist[i][Q]);
    cout << ans << endl;

    return 0;
}
0