結果

問題 No.2759 Take Pictures, Elements?
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-12-04 23:42:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,389 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 172,404 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-12-04 23:42:50
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//sakusen
//dp[M][x] B_Mまで撮影し終え、しかもそのとき機会が一xにあるときの層移動コストの最小値
//B_M=A_xが必要 そうでないならてきとうに998244353(とてもおおきい)にでもしとけ

#include<bits/stdc++.h>
using namespace std;

int main(){
    int N,Q;
    cin >> N >> Q;
    vector<int> A(N+1);
    vector<int> B(Q+1);
    for(int i=1;i<=N;i++){
        cin >> A[i];
    }
    for(int i=1;i<=Q;i++){
        cin >> B[i];
    }
    vector<vector<int>> dp(Q+1, vector<int>(N+1));
    for(int i=1;i<=N;i++){
        if(A[i] == B[1]){
            dp[1][i] = i-1;
        } else {
            dp[1][i] = 998244353;
        }
    }
    int min_temp = 998244353;
    int cost = 0;
    for(int m=2;m<=Q;m++){
        for(int x=1;x<=N;x++){
            //dp[m][x]求めるよ
            if(A[x] != B[m]){
                dp[m][x] = 998244353;
            } else {
                min_temp = 998244353;
                for(int x_0=1;x_0<=N;x_0++){
                    cost = dp[m-1][x_0] + abs(x-x_0);
                    if(cost < min_temp){
                        min_temp = cost;
                    }
                }
                dp[m][x] = min_temp;
            }
        }
    }

    int min = 998244353;
    for(int x=1;x<N;x++){
        if(dp[Q][x] < min){
            min = dp[Q][x];
        }
    }
    cout << min << endl;
}
0