結果

問題 No.1818 6 Operations
ユーザー auauaauaua
提出日時 2022-01-22 15:32:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 145 ms / 2,500 ms
コード長 1,651 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 173,852 KB
実行使用メモリ 116,352 KB
最終ジャッジ日時 2024-11-27 12:48:28
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 41 ms
36,864 KB
testcase_09 AC 89 ms
68,224 KB
testcase_10 AC 44 ms
37,376 KB
testcase_11 AC 36 ms
34,560 KB
testcase_12 AC 69 ms
54,528 KB
testcase_13 AC 51 ms
45,312 KB
testcase_14 AC 59 ms
51,840 KB
testcase_15 AC 70 ms
59,520 KB
testcase_16 AC 56 ms
49,792 KB
testcase_17 AC 84 ms
72,832 KB
testcase_18 AC 136 ms
100,992 KB
testcase_19 AC 112 ms
96,896 KB
testcase_20 AC 126 ms
102,272 KB
testcase_21 AC 140 ms
104,064 KB
testcase_22 AC 106 ms
89,728 KB
testcase_23 AC 142 ms
110,208 KB
testcase_24 AC 118 ms
92,544 KB
testcase_25 AC 133 ms
116,352 KB
testcase_26 AC 118 ms
94,464 KB
testcase_27 AC 130 ms
98,816 KB
testcase_28 AC 41 ms
37,120 KB
testcase_29 AC 39 ms
34,688 KB
testcase_30 AC 145 ms
100,608 KB
testcase_31 AC 124 ms
106,880 KB
testcase_32 AC 143 ms
111,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=2;
const ll MAX=100010;
const double PI=acos(-1.0);
typedef vector<vector<ll> > mat;
typedef vector<ll> vec;



void solve(){
    ll n,m;cin>>n>>m;
    vector<ll>a(n),b(m);
    rep(i,n)cin>>a[i];
    rep(i,m)cin>>b[i];
    vector<ll>c(0),d(0);
    rep(i,n){
        c.pb(0);
        rep(j,a[i])c.pb(1);
    }
    rep(i,m){
        d.pb(0);
        rep(j,b[i])d.pb(1);
    }
    ll x=c.size(),y=d.size();
    vector<vector<ll> >dp(x,vector<ll>(y,inf));
    if(c[0]==d[0])dp[0][0]=0;
    else dp[0][0]=1;
    rep(i,x){
        rep(j,y){
            if(i+1<x){
                dp[i+1][j]=min(dp[i+1][j],dp[i][j]+1);
                if(j+1<y){
                    if(c[i+1]==d[j+1])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);
                }
            }
            if(j+1<y){
                dp[i][j+1]=min(dp[i][j+1],dp[i][j]+1);
            }
        }
    }
    cout<<dp[x-1][y-1]<<endl;
}

signed main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0