結果

問題 No.1818 6 Operations
ユーザー 沙耶花沙耶花
提出日時 2022-01-21 21:59:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,500 ms
コード長 917 bytes
コンパイル時間 4,446 ms
コンパイル使用メモリ 263,488 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-11-26 00:01:34
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 34 ms
20,224 KB
testcase_09 AC 69 ms
35,840 KB
testcase_10 AC 34 ms
20,608 KB
testcase_11 AC 30 ms
19,072 KB
testcase_12 AC 60 ms
29,184 KB
testcase_13 AC 43 ms
24,448 KB
testcase_14 AC 49 ms
27,776 KB
testcase_15 AC 56 ms
31,616 KB
testcase_16 AC 52 ms
26,752 KB
testcase_17 AC 68 ms
38,144 KB
testcase_18 AC 104 ms
52,352 KB
testcase_19 AC 92 ms
50,176 KB
testcase_20 AC 102 ms
52,864 KB
testcase_21 AC 116 ms
53,888 KB
testcase_22 AC 83 ms
46,592 KB
testcase_23 AC 113 ms
56,960 KB
testcase_24 AC 93 ms
48,128 KB
testcase_25 AC 111 ms
59,904 KB
testcase_26 AC 94 ms
49,152 KB
testcase_27 AC 103 ms
51,200 KB
testcase_28 AC 36 ms
20,480 KB
testcase_29 AC 33 ms
19,328 KB
testcase_30 AC 109 ms
52,224 KB
testcase_31 AC 100 ms
55,296 KB
testcase_32 AC 113 ms
57,856 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