제출 #1031146

#제출 시각아이디문제언어결과실행 시간메모리
1031146c2zi6Paint By Numbers (IOI16_paint)C++14
90 / 100
2067 ms33984 KiB
#define _USE_MATH_DEFINES #include <bits/stdc++.h> #define ff first #define ss second #define pb push_back #define all(a) (a).begin(), (a).end() #define replr(i, a, b) for (int i = int(a); i <= int(b); ++i) #define reprl(i, a, b) for (int i = int(a); i >= int(b); --i) #define rep(i, n) for (int i = 0; i < int(n); ++i) #define mkp(a, b) make_pair(a, b) using namespace std; typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef vector<int> VI; typedef vector<PII> VPI; typedef vector<VI> VVI; typedef vector<VVI> VVVI; typedef vector<VPI> VVPI; typedef pair<ll, ll> PLL; typedef vector<ll> VL; typedef vector<PLL> VPL; typedef vector<VL> VVL; typedef vector<VVL> VVVL; typedef vector<VPL> VVPL; template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;} template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;} #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; template<class T> using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; #include "paint.h" struct PREFIXSUM { VI pref[3]; PREFIXSUM(string s) { int n = s.size(); pref[0] = pref[1] = pref[2] = VI(n+1); rep(i, n) { if (s[i] == '_') pref[0][i+1]++; else if (s[i] == 'X') pref[1][i+1]++; else if (s[i] == '.') pref[2][i+1]++; pref[0][i+1] += pref[0][i]; pref[1][i+1] += pref[1][i]; pref[2][i+1] += pref[2][i]; } } int count(int l, int r, string s) { int ret = 0; for (char ch : s) if (ch == '_') ret += pref[0][r+1] - pref[0][l]; else if (ch == 'X') ret += pref[1][r+1] - pref[1][l]; else if (ch == '.') ret += pref[2][r+1] - pref[2][l]; return ret; }; }; VVI solve(string s, VI c) { PREFIXSUM pref(s); int n = s.size(); int k = c.size(); VVI dp(n+1, VI(k+1)); dp[0][0] = true; replr(i, 1, n) { if (s[i-1] == 'X') break; dp[i][0] = true; } replr(i, 1, n) replr(j, 1, k) { if (s[i-1] != 'X') dp[i][j] |= dp[i-1][j]; int sz = c[j-1]; if (i-sz < 0 || pref.count(i-sz, i-1, "_")) continue; if (i-sz == 0) dp[i][j] |= dp[0][j-1]; else if (s[i-sz-1] != 'X') dp[i][j] |= dp[i-sz-1][j-1]; } return dp; } string solve_puzzle(string s, VI c) { s = "_" + s + "_"; int n = s.size(); int k = c.size(); VVI dpl = solve(s, c); reverse(all(s)); reverse(all(c)); VVI dpr = solve(s, c); reverse(all(s)); reverse(all(c)); PREFIXSUM pref(s); string ans(n, '?'); replr(i, 1, n) { if (s[i] != '.') ans[i] = s[i]; else { bool a = false; replr(j, 0, k-1) { /*if (i == 4) cout << "ERKARUTYUN@ " << c[j] << endl;*/ int L = max(1, i-c[j]+1); int R = min(n, i+c[j]-1)-c[j]+1; /*if (i == 4) cout << "dzax keti mijakayq@ " << L << ".." << R << endl;*/ for (int l = L; l <= R; l++) { int r = l+c[j]-1; if (pref.count(l, r, "_")) continue; if (s[l-1] == 'X') continue; if (s[r+1] == 'X') continue; /*if (i == 4) {*/ /* cout << " MIJAKAYQ@ " << l << ".." << r << endl;*/ /* cout << " SKZBIC " << l-1 << " HAT, VERJIC " << n-r-2 << " HAT " << endl;*/ /*}*/ if (dpl[l-1][j] && dpr[n-r-2][k-j-1]) a = true; } } bool b = false; replr(j, 0, k) { if (dpl[i][j] && dpr[n-i-1][k-j]) { b = true; } } /*if (i == 4) {*/ /* cout << a << ", " << b << endl;*/ /*}*/ if (a && !b) ans[i] = 'X'; else if (!a && b) ans[i] = '_'; } } ans = ans.substr(1, n-2); /*string real;*/ /*cin >> real;*/ /*if (real != ans) rep(i, 1000) cout << "ALERT ";*/ 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...