結果

問題 No.2759 Take Pictures, Elements?
ユーザー matcharate12matcharate12
提出日時 2024-05-09 19:13:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 83,424 KB
実行使用メモリ 64,928 KB
最終ジャッジ日時 2024-05-09 19:54:55
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
63,084 KB
testcase_01 AC 188 ms
64,928 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 118 ms
61,912 KB
testcase_10 AC 119 ms
61,864 KB
testcase_11 AC 118 ms
61,836 KB
testcase_12 AC 118 ms
61,788 KB
testcase_13 AC 119 ms
61,880 KB
testcase_14 AC 140 ms
61,912 KB
testcase_15 AC 140 ms
61,888 KB
testcase_16 AC 140 ms
62,072 KB
testcase_17 AC 138 ms
62,008 KB
testcase_18 AC 138 ms
62,036 KB
testcase_19 AC 141 ms
61,924 KB
testcase_20 AC 136 ms
61,900 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:40:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   40 |         for(auto [nv,c] : G[v]){
      |                  ^

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#define rep(i,n) for(int i = 0; i < n; i++) //[0,n)
using namespace std;
const int iinf = (int)1e9+1;
struct Edge { int to; long long cost; int from; };
bool compe(const Edge &e,const Edge &e2){ return e.cost < e2.cost; }
template <class T>
int siz(T& a){return (int)a.size();}

int main(){
    int N,Q; cin >> N >> Q;
    vector<int> A(N),B(Q);
    rep(i,N) cin >> A[i];
    rep(i,Q) cin >> B[i];
    
    vector<vector<pair<int,int>>> G(N*Q+1);
    rep(j,Q){
        rep(i,N){
            if(i == N-1) continue;
            G[j*N+i].emplace_back(j*N+i+1,1);
            G[j*N+i+1].emplace_back(j*N+i,1);
        }
        rep(i,N){
            if(A[i] != B[j]) continue;
            if(j != Q-1) G[j*N+i].emplace_back((j+1)*N+i,0);
            else G[j*N+i].emplace_back(N*Q,0);
        }
    }

    vector<int> dist(N*Q+1,iinf);
    deque<int> D;
    D.push_back(0);
    dist[0] = 0;

    while(siz(D)){
        int v = D.front(); D.pop_front();
        for(auto [nv,c] : G[v]){
            int d = dist[v]+c;
            if(d < dist[nv]){
                dist[nv] = d;
                if(c) D.push_back(nv);
                else D.push_front(nv);
            }
        }
    }
    
    cout << dist[N*Q];
}

0