結果

問題 No.2759 Take Pictures, Elements?
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-17 21:46:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,091 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 212,996 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 21:46:32
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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

    int N,Q; cin >> N >> Q;
    map<int,vector<int>> rev;
    for(int i=0; i<N; i++){
        int a; cin >> a;
        rev[a].push_back(i);
    }
    int inf = 1e9;
    vector<int> dp(N,inf); dp.at(0) = 0;
    while(Q--){
        int b; cin >> b;
        vector<int> &ap = rev[b],next(N,inf);
        int pos = 0;
        for(int i=0; i<ap.size()-1; i++){
            int pos1 = ap.at(i),pos2 = ap.at(i+1);
            while(pos < pos2){
                next.at(pos) = min(dp.at(pos1)+abs(pos1-pos),dp.at(pos2)+abs(pos2-pos));
                pos++;
            }
        }
        {
            int apos = ap.back();
            for(int i=0; i<N; i++) next.at(apos) = min(next.at(apos),dp.at(i)+abs(apos-i));
        }
        for(int i=1; i<N; i++) next.at(i) = min(next.at(i),next.at(i-1)+1);
        for(int i=N-2; i>=0; i--) next.at(i) = min(next.at(i),next.at(i+1)+1);
        
        swap(dp,next);
    }

    cout << *min_element(dp.begin(),dp.end()) << endl;
}
0