Submission #926048

#TimeUsernameProblemLanguageResultExecution timeMemory
926048macneilDango Maker (JOI18_dango_maker)C++17
100 / 100
239 ms39356 KiB
//cf meowcneil; t.me/macneilbot #include <iostream> #include <vector> #include <cmath> #include <algorithm> #include <string> #include <bitset> #include <iterator> #include <iomanip> #include <map> #include <set> #include <unordered_map> #include <unordered_set> #include <ctime> #include <deque> #include <queue> #include <stack> #include <random> #include <cassert> using namespace std; // #define int long long #define pb push_back #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define f(a) for(int i = 0; i<a; ++i) typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef string str; typedef vector<str> vestr; typedef vector<int> vei; typedef vector<vector<int>> veve; void solve() { int n, m; cin >> n >> m; vector<string> a(n); for (int i = 0; i < n; ++i) cin >> a[i]; vector<vector<short>> ct(n, vector<short>(m)); vector<vector<bool>> ok1(n, vector<bool>(m)); vector<vector<bool>> ok2(n, vector<bool>(m)); for (int i = 0; i < n; ++i) { for (int j = 0; j < m; ++j) { if (i && i < n - 1 && a[i - 1][j] == 'R' && a[i + 1][j] == 'W') ct[i][j]++; if (i && i < n - 1 && a[i - 1][j] == 'R' && a[i + 1][j] == 'W') ok1[i][j] = 1; if (j && j < m - 1 && a[i][j - 1] == 'R' && a[i][j + 1] == 'W') ct[i][j]++; if (j && j < m - 1 && a[i][j - 1] == 'R' && a[i][j + 1] == 'W') ok2[i][j] = 1; } } int ans = 0; for (int s = 0; s < n + m; ++s) { bool curr = 0; for (int i = s; i >= 0; --i) { int j = s - i; if (i >= n || j >= m) continue; if (a[i][j] != 'G') continue; if (ct[i][j] == 1) { if (ok1[i][j]) { if (a[i - 1][j] == 'R' && a[i + 1][j] == 'W') { a[i - 1][j] = 'Q'; a[i + 1][j] = 'Q'; ans++; } } else { if (a[i][j - 1] == 'R' && a[i][j + 1] == 'W') { a[i][j - 1] = 'Q'; a[i][j + 1] = 'Q'; ans++; } } } else if (ct[i][j] == 2) { if (a[i - 1][j] != 'R' || a[i + 1][j] != 'W') { if (a[i][j - 1] == 'R' && a[i][j + 1] == 'W') { a[i][j - 1] = 'Q'; a[i][j + 1] = 'Q'; ans++; } continue; } if (a[i][j - 1] != 'R' || a[i][j + 1] != 'W') { if (a[i - 1][j] == 'R' && a[i + 1][j] == 'W') { a[i - 1][j] = 'Q'; a[i + 1][j] = 'Q'; ans++; } continue; } ans++; } } } cout << ans << '\n'; } signed main() { int tc = 1; #ifdef LOCAL freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); // cin >> tc; #else ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // cin >> tc; #endif for (int t = 1; t <= tc; t++) { // cout << "Case #" << t << ": "; solve(); } }

Compilation message (stderr)

dango_maker.cpp: In function 'void solve()':
dango_maker.cpp:57:14: warning: unused variable 'curr' [-Wunused-variable]
   57 |         bool curr = 0;
      |              ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...