結果
問題 | No.1005 BOT対策 |
ユーザー | rniya |
提出日時 | 2020-03-06 22:02:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 934 bytes |
コンパイル時間 | 1,512 ms |
コンパイル使用メモリ | 165,724 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-01 20:07:24 |
合計ジャッジ時間 | 2,655 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF=1e9; template<class T> inline bool chmin(T &a,T b){ if (a>b){a=b; return true;} return false; } int main(){ cin.tie(0); ios::sync_with_stdio(false); string S,T; cin >> S >> T; int s=S.size(),t=T.size(); if (t==1){ for (int i=0;i<s;++i){ if (S[i]==T[0]){ cout << -1 << '\n'; return 0; } } cout << 0 << '\n'; return 0; } vector<vector<int>> dp(s+1,vector<int>(t,INF)); dp[0][0]=0; for (int i=0;i<s;++i){ for (int j=0;j<t;++j){ chmin(dp[i+1][(S[i]==T[0]?1:0)],dp[i][j]+1); if (S[i]==T[j]){ if (j<t-1) chmin(dp[i+1][j+1],dp[i][j]); } else chmin(dp[i+1][(S[i]==T[0]?1:0)],dp[i][j]); } } int ans=INF; for (int j=0;j<t;++j) chmin(ans,dp[s][j]); cout << ans << '\n'; }