제출 #980511

#제출 시각아이디문제언어결과실행 시간메모리
980511emad234Paint By Numbers (IOI16_paint)C++17
7 / 100
1 ms2396 KiB
#include "paint.h" #include <bits/stdc++.h> #define ll long long #define F first #define S second #define pii pair<ll, ll> const ll mod = 1e9 + 7; const ll mxN = 3e5 + 2; using namespace std; bool dpP[200010][110][2], dpS[200010][110][2]; int prfx[200010], suff[200010]; int a[200010], b[200010]; string solve_puzzle(string s, vector<int> c) { int n = s.size(), k = c.size(); string s1 = "#"; s1 += s; s = s1; vector<int> c1; c1.push_back(-1); for (auto x : c) c1.push_back(x); c = c1; for (int i = 1; i <= n; i++) { prfx[i] = prfx[i - 1] + (s[i] == '_'); } dpP[0][0][0] = 1; dpP[0][0][1] = 1; dpS[n + 1][k + 1][0] = 1; dpS[n + 1][k + 1][1] = 1; for (int j = 0; j <= k; j++) { for (int i = 1; i <= n; i++) { dpP[i][j][0] = dpP[i - 1][j][0]; if (j == 0) { dpP[i][j][0] = 1; dpP[i][j][1] = 1; } else { if (i >= c[j]) { if (prfx[i] == prfx[i - c[j]]) { if (j == 1){ dpP[i][j][1] = dpP[i - c[j]][j - 1][0]; dpP[i][j][0] = max(dpP[i][j][0], dpP[i - c[j]][j - 1][0]); } else{ dpP[i][j][1] = dpP[i - c[j] - 1][j - 1]; dpP[i][j][0] = max(dpP[i][j][0], dpP[i - c[j] - 1][j - 1][0]); } } } } // cout << dpP[i][j] << ' '; } // cout << '\n'; } // cout<<'\n'; for (int i = n; i; i--) { suff[i] = suff[i + 1] + (s[i] == '_'); } for (int j = k + 1; j; j--) { for (int i = n; i; i--) { dpS[i][j][0] = dpS[i + 1][j][0]; if (j == k + 1) { dpS[i][j][0] = 1; dpS[i][j][1] = 1; } else { if (suff[i] == suff[i + c[j]]) { if (j == k){ dpS[i][j][1] = dpS[i + c[j]][j + 1][0]; dpS[i][j][0] = max(dpS[i][j][0], dpS[i + c[j]][j + 1][0]); } else{ dpS[i][j][1] = dpS[i + c[j] + 1][j + 1][0]; dpS[i][j][0] = max(dpS[i][j][0], dpS[i + c[j] + 1][j + 1][0]); } } } // cout << dpS[i][j] << ' '; } // cout<<'\n'; } // cout<<'\n'; for (int i = 1; i <= n; i++) { for (int j = 1; j <= k + 1; j++) { if (j != k + 1 && (dpP[i][j][1] && dpS[i + 1][j + 1][0])) { a[i - c[j] + 1] += 1; a[i + 1] += -1; } if (j != k + 1 && (dpP[i - 1][j - 1][0] && dpS[i][j][1])) { a[i] += 1; a[i + c[j] + 1] += -1; } if (dpP[i - 1][j - 1][0] && dpS[i + 1][j][0]) b[i] = 1; } } for (int i = 1; i <= n; i++) { a[i] += a[i - 1]; } string ans; for (int i = 1; i <= n; i++) { char ch; if (a[i] && b[i]) ch = '?'; else if (a[i]) ch = 'X'; else if (b[i]) ch = '_'; ans += ch; } // cout<<ans<<' '<<"TEST"; return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...