結果

問題 No.1818 6 Operations
ユーザー 沙耶花沙耶花
提出日時 2022-01-21 21:59:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 2,500 ms
コード長 917 bytes
コンパイル時間 4,915 ms
コンパイル使用メモリ 263,252 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-05-04 12:53:37
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 33 ms
20,352 KB
testcase_09 AC 68 ms
35,712 KB
testcase_10 AC 31 ms
20,480 KB
testcase_11 AC 28 ms
19,200 KB
testcase_12 AC 49 ms
29,184 KB
testcase_13 AC 40 ms
24,320 KB
testcase_14 AC 46 ms
27,648 KB
testcase_15 AC 54 ms
31,616 KB
testcase_16 AC 47 ms
26,752 KB
testcase_17 AC 68 ms
38,144 KB
testcase_18 AC 102 ms
52,352 KB
testcase_19 AC 87 ms
50,432 KB
testcase_20 AC 97 ms
52,864 KB
testcase_21 AC 103 ms
53,888 KB
testcase_22 AC 81 ms
46,720 KB
testcase_23 AC 108 ms
56,960 KB
testcase_24 AC 90 ms
48,128 KB
testcase_25 AC 110 ms
60,032 KB
testcase_26 AC 93 ms
49,152 KB
testcase_27 AC 97 ms
51,328 KB
testcase_28 AC 33 ms
20,480 KB
testcase_29 AC 29 ms
19,200 KB
testcase_30 AC 104 ms
52,224 KB
testcase_31 AC 96 ms
55,296 KB
testcase_32 AC 110 ms
57,728 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 Inf 1000000001

string get(vector<int> a){
	string ret = "1";
	rep(i,a.size()){
		rep(j,a[i])ret += '0';
		ret += '1';
	}
	return ret;
}

int main(){
	
	int n,m;
	cin>>n>>m;
	
	vector<int> a(n),b(m);
	rep(i,n)cin>>a[i];
	rep(i,m)cin>>b[i];
	
	string s = get(a);
	string t = get(b);
	n = s.size(),m = t.size();
	vector dp(n+1,vector<int>(m+1,Inf));
	dp[0][0] = 0;
	
	rep(i,n+1){
		rep(j,m+1){
			if(i!=n){
				dp[i+1][j] = min(dp[i+1][j],dp[i][j]+1);
			}
			if(j!=m){
				dp[i][j+1] = min(dp[i][j+1],dp[i][j]+1);
			}
			if(i!=n&&j!=m){
				if(s[i]==t[j]){
					dp[i+1][j+1] = min(dp[i+1][j+1],dp[i][j]);
				}
				else{
					dp[i+1][j+1] = min(dp[i+1][j+1],dp[i][j]+1);
				}
			}
		}
	}
	cout<<dp[n][m]<<endl;
	
	return 0;
}
0