結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
63,164 KB
testcase_01 AC 206 ms
65,056 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 126 ms
61,796 KB
testcase_10 AC 122 ms
62,104 KB
testcase_11 AC 122 ms
61,832 KB
testcase_12 AC 123 ms
61,832 KB
testcase_13 AC 123 ms
61,800 KB
testcase_14 AC 143 ms
62,028 KB
testcase_15 AC 142 ms
61,872 KB
testcase_16 AC 143 ms
61,908 KB
testcase_17 AC 146 ms
61,980 KB
testcase_18 AC 143 ms
61,964 KB
testcase_19 AC 147 ms
61,940 KB
testcase_20 AC 146 ms
61,916 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,944 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+N+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