結果
問題 | No.2759 Take Pictures, Elements? |
ユーザー | nonon |
提出日時 | 2024-05-18 06:50:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 10 ms / 2,000 ms |
コード長 | 801 bytes |
コンパイル時間 | 2,308 ms |
コンパイル使用メモリ | 202,124 KB |
実行使用メモリ | 7,604 KB |
最終ジャッジ日時 | 2024-05-18 06:50:57 |
合計ジャッジ時間 | 3,178 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
7,268 KB |
testcase_01 | AC | 10 ms
7,388 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 6 ms
7,352 KB |
testcase_10 | AC | 6 ms
7,484 KB |
testcase_11 | AC | 6 ms
7,444 KB |
testcase_12 | AC | 6 ms
7,428 KB |
testcase_13 | AC | 5 ms
7,540 KB |
testcase_14 | AC | 6 ms
7,428 KB |
testcase_15 | AC | 5 ms
7,604 KB |
testcase_16 | AC | 7 ms
7,288 KB |
testcase_17 | AC | 6 ms
7,332 KB |
testcase_18 | AC | 7 ms
7,360 KB |
testcase_19 | AC | 6 ms
7,440 KB |
testcase_20 | AC | 7 ms
7,424 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; void chmin(int&a, int b){if(a>b)a=b;} int N,Q,A[1010],B[1010]; int dp[1010][1010]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>Q; for(int i=0;i<N;i++)cin>>A[i]; for(int i=0;i<=Q;i++)for(int j=0;j<=N;j++)dp[i][j]=1<<30; dp[0][0]=0; for(int i=0;i<Q;i++) { cin>>B[i]; int Lmin=1<<30; for(int j=0;j<N;j++) { if(A[j]==B[i])chmin(dp[i+1][j],Lmin+j); chmin(Lmin,dp[i][j]-j); } int Rmin=1<<30; for(int j=N;j--;) { chmin(Rmin,dp[i][j]+j); if(A[j]==B[i])chmin(dp[i+1][j],Rmin-j); } } int ans=1<<30; for(int i=0;i<N;i++)if(A[i]==B[Q-1])chmin(ans,dp[Q][i]); cout<<ans<<endl; }