結果

問題 No.1818 6 Operations
ユーザー rabimearabimea
提出日時 2023-03-01 18:35:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,500 ms
コード長 1,147 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 202,868 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-09-16 16:09:07
合計ジャッジ時間 5,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,176 KB
testcase_01 AC 46 ms
66,304 KB
testcase_02 AC 49 ms
66,176 KB
testcase_03 AC 46 ms
66,176 KB
testcase_04 AC 46 ms
66,176 KB
testcase_05 AC 46 ms
66,048 KB
testcase_06 AC 46 ms
66,176 KB
testcase_07 AC 47 ms
66,176 KB
testcase_08 AC 61 ms
66,176 KB
testcase_09 AC 98 ms
66,432 KB
testcase_10 AC 62 ms
66,304 KB
testcase_11 AC 62 ms
66,176 KB
testcase_12 AC 82 ms
66,432 KB
testcase_13 AC 64 ms
66,304 KB
testcase_14 AC 75 ms
66,304 KB
testcase_15 AC 80 ms
66,432 KB
testcase_16 AC 66 ms
66,176 KB
testcase_17 AC 83 ms
66,432 KB
testcase_18 AC 111 ms
66,304 KB
testcase_19 AC 85 ms
66,304 KB
testcase_20 AC 103 ms
66,432 KB
testcase_21 AC 116 ms
66,304 KB
testcase_22 AC 83 ms
66,304 KB
testcase_23 AC 109 ms
66,304 KB
testcase_24 AC 104 ms
66,304 KB
testcase_25 AC 95 ms
66,176 KB
testcase_26 AC 102 ms
66,432 KB
testcase_27 AC 111 ms
66,432 KB
testcase_28 AC 62 ms
66,176 KB
testcase_29 AC 61 ms
66,176 KB
testcase_30 AC 119 ms
66,176 KB
testcase_31 AC 86 ms
66,432 KB
testcase_32 AC 109 ms
66,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using vl = vector <ll>;
using pii = pair <int, int>;
const ll mod = 998244353;
//~ const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 4e3 + 11;
int f[N][N];

void chmin(int &a, int b) {
	if(a > b) a = b;
}

int main() {
	ios::sync_with_stdio(0);
	int n, m; cin >> n >> m;
	
	vi a, b;
	for(int i = 0; i < n; i ++) {
		int x; cin >> x;
		a.pb(0);
		for(int j = 0; j < x; j ++)
			a.pb(1);
	}
	for(int i = 0; i < m; i ++) {
		int x; cin >> x;
		b.pb(0);
		for(int j = 0; j < x; j ++)
			b.pb(1);
	}
	
	n = a.size();
	m = b.size();
	a.pb(2); b.pb(2);
	
	memset(f, 0x3f, sizeof f);
	f[0][0] = 0;
	for(int i = 0; i < n; i ++)
		for(int j = 0; j < m; j ++) {
			chmin(f[i + 1][j], f[i][j] + 1);
			chmin(f[i][j + 1], f[i][j] + 1);
			
			if(a[i + 1] == b[j + 1])
				chmin(f[i + 1][j + 1], f[i][j]);
			else
				chmin(f[i + 1][j + 1], f[i][j] + 1);
		}
	cout << f[n - 1][m - 1] << '\n';
}

0