結果

問題 No.1818 6 Operations
ユーザー auauaauaua
提出日時 2022-01-22 15:32:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,500 ms
コード長 1,651 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 175,200 KB
実行使用メモリ 116,352 KB
最終ジャッジ日時 2024-05-05 14:43:48
合計ジャッジ時間 4,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 41 ms
36,992 KB
testcase_09 AC 89 ms
68,224 KB
testcase_10 AC 45 ms
37,504 KB
testcase_11 AC 38 ms
34,688 KB
testcase_12 AC 70 ms
54,528 KB
testcase_13 AC 51 ms
45,440 KB
testcase_14 AC 58 ms
51,712 KB
testcase_15 AC 70 ms
59,648 KB
testcase_16 AC 57 ms
49,920 KB
testcase_17 AC 84 ms
72,832 KB
testcase_18 AC 132 ms
101,120 KB
testcase_19 AC 109 ms
97,024 KB
testcase_20 AC 125 ms
102,400 KB
testcase_21 AC 140 ms
104,192 KB
testcase_22 AC 102 ms
89,856 KB
testcase_23 AC 140 ms
110,208 KB
testcase_24 AC 119 ms
92,544 KB
testcase_25 AC 135 ms
116,352 KB
testcase_26 AC 120 ms
94,464 KB
testcase_27 AC 133 ms
98,944 KB
testcase_28 AC 42 ms
37,120 KB
testcase_29 AC 38 ms
34,816 KB
testcase_30 AC 138 ms
100,608 KB
testcase_31 AC 123 ms
107,008 KB
testcase_32 AC 141 ms
111,872 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