結果

問題 No.2759 Take Pictures, Elements?
ユーザー KeiKei
提出日時 2024-05-17 22:38:32
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 8,183 ms
コンパイル使用メモリ 285,652 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-05-17 22:38:42
合計ジャッジ時間 4,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const long long INF = 1e18;
int main() {
	int N, Q;
	cin >> N >> Q;
	vector<int> A(N), B(Q);
	for (int i = 0; i < N; i++) {
		cin >> A[i];
	}
	for (int i = 0; i < Q; i++) {
		cin >> B[i];
	}
	map<int, vector<int>> m;
	for (int i = 0; i < N; i++) {
		m[A[i]].push_back(i);
	}
	vector<vector<long long>> dp(Q + 1, vector<long long> (N, INF));
	dp[0][0] = 0;
	for (int i = 0; i < Q; i++) {
		for (int j = 0; j < N; j++) {
			if (dp[i][j] != INF) {
				for (int w : m[B[i]]) {
					dp[i + 1][w] = min(dp[i + 1][w], dp[i][j] + abs(w - j));
				}
			}
		}
	}
	long long ans = INF;
	for (int i = 0; i < N; i++) {
		ans = min(ans, dp[Q][i]);
	}
	cout << ans << endl;
}
0