結果
問題 | No.874 正規表現間距離 |
ユーザー | momohara |
提出日時 | 2020-04-17 02:39:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 2,984 bytes |
コンパイル時間 | 1,618 ms |
コンパイル使用メモリ | 178,076 KB |
実行使用メモリ | 34,688 KB |
最終ジャッジ日時 | 2024-10-03 08:10:53 |
合計ジャッジ時間 | 3,222 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 4 ms
6,816 KB |
testcase_17 | AC | 5 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 15 ms
13,696 KB |
testcase_26 | AC | 13 ms
13,696 KB |
testcase_27 | AC | 39 ms
34,560 KB |
testcase_28 | AC | 39 ms
25,216 KB |
testcase_29 | AC | 41 ms
34,560 KB |
testcase_30 | AC | 46 ms
34,688 KB |
testcase_31 | AC | 43 ms
29,184 KB |
testcase_32 | AC | 43 ms
29,184 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | AC | 12 ms
10,112 KB |
testcase_37 | AC | 11 ms
10,112 KB |
testcase_38 | AC | 2 ms
6,820 KB |
testcase_39 | AC | 2 ms
6,820 KB |
testcase_40 | AC | 1 ms
6,816 KB |
testcase_41 | AC | 1 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,m,n) for(int (i)=(int)(m);i<(int)(n);i++) #define rep2(i,m,n) for(int (i)=(int)(n)-1;i>=(int)(m);i--) #define REP(i,n) rep(i,0,n) #define REP2(i,n) rep2(i,0,n) #define FOR(i,c) for(decltype((c).begin())i=(c).begin();i!=(c).end();++i) #define all(hoge) (hoge).begin(),(hoge).end() #define en '\n' using ll = long long; using ull = unsigned long long; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; typedef pair<ll, ll> P; constexpr long long INF = 1LL << 60; constexpr int INF_INT = 1 << 25; //constexpr long long MOD = (ll) 1e9 + 7; constexpr long long MOD = 998244353LL; typedef vector<ll> Array; typedef vector<Array> Matrix; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } struct Edge { ll to, cap, rev; Edge(ll _to, ll _cap, ll _rev) { to = _to; cap = _cap; rev = _rev; } }; using Edges = vector<Edge>; using Graph = vector<Edges>; void add_edge(Graph& G, ll from, ll to, ll cap, bool revFlag, ll revCap) { G[from].push_back(Edge(to, cap, (ll)G[to].size())); if (revFlag)G[to].push_back(Edge(from, revCap, (ll)G[from].size() - 1)); } void f(string& sa,vec<P>& a){ REP(i,sa.size()){ if(i+1<sa.size()){ if(sa[i+1]=='?'){ a.push_back({sa[i],1}); i++; }else if(sa[i+1]=='*'){ a.push_back({sa[i],2}); i++; }else{ a.push_back({sa[i],0}); } }else{ a.push_back({sa[i],0}); } } } void solve(){ string sa,sb; cin>>sa>>sb; vec<P> a,b; f(sa,a); f(sb,b); ll n=a.size(); ll m=b.size(); Matrix dp(n+1,Array(m+1,INF)); dp[0][0]=0; REP(i,n+1){ REP(j,m+1){ if(i<n){ chmin(dp[i+1][j],dp[i][j]+1);//削除 if(a[i].second!=0) chmin(dp[i+1][j],dp[i][j]);//?や*は無視できる } if(j<m){ chmin(dp[i][j+1],dp[i][j]+1);//削除 if(b[j].second!=0) chmin(dp[i][j+1],dp[i][j]);//?や*は無視できる } if(i<n && j<m){ if(a[i].first==b[j].first){ chmin(dp[i+1][j+1],dp[i][j]); if(a[i].second==2) chmin(dp[i][j+1],dp[i][j]);//*はもう一回使える if(b[j].second==2) chmin(dp[i+1][j],dp[i][j]);//*はもう一回使える }else{ chmin(dp[i+1][j+1],dp[i][j]+1);//置換 } } } } cout<<dp[n][m]<<en; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); solve(); //ll t;cin>>t;REP(i,t) solve(); return 0; }