結果

問題 No.2759 Take Pictures, Elements?
ユーザー 沙耶花沙耶花
提出日時 2024-05-17 21:29:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 4,322 ms
コンパイル使用メモリ 268,452 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-05-17 21:29:32
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
7,424 KB
testcase_01 AC 21 ms
7,424 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,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 12 ms
7,552 KB
testcase_10 AC 11 ms
7,552 KB
testcase_11 AC 12 ms
7,424 KB
testcase_12 AC 12 ms
7,424 KB
testcase_13 AC 12 ms
7,552 KB
testcase_14 AC 14 ms
7,424 KB
testcase_15 AC 14 ms
7,424 KB
testcase_16 AC 13 ms
7,552 KB
testcase_17 AC 13 ms
7,424 KB
testcase_18 AC 13 ms
7,424 KB
testcase_19 AC 13 ms
7,424 KB
testcase_20 AC 13 ms
7,424 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

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 d(q+1,vector<int>(n,Inf32));
	d[0][0]=0;
	deque<pair<int,int>> D;
	D.emplace_back(0,0);
	while(D.size()>0){
		int x = D.back().first,y = D.back().second;
		D.pop_back();
		{
			if(y+1<n){
				if(d[x][y+1]>d[x][y]+1){
					d[x][y+1]=d[x][y]+1;
					D.emplace_front(x,y+1);
				}
			}
		}
		{
			if(y-1>=0){
				if(d[x][y-1]>d[x][y]+1){
					d[x][y-1]=d[x][y]+1;
					D.emplace_front(x,y-1);
				}
			}
		}
		if(x!=q && b[x]==a[y]){
			if(d[x+1][y]>d[x][y]){
				d[x+1][y]=d[x][y];
				D.emplace_front(x+1,y);
			}
		}
		
	}
	int ans = Inf32;
	rep(i,n)ans = min(ans,d[q][i]);
	cout<<ans<<endl;
	return 0;
}
0