Submission #1027171

#TimeUsernameProblemLanguageResultExecution timeMemory
1027171vjudge1Bitaro the Brave (JOI19_ho_t1)C++17
0 / 100
1 ms348 KiB
#include <bits/stdc++.h> #define int long long #define INF LLONG_MAX #define pii pair<int, int> using namespace std; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int h, w; cin >> h >> w; vector<vector<char>> grid(h, vector<char>(w)); vector<int> rowcnt(h, 0), colcnt(w, 0); for (int i = 0; i < h; i++) { string s; cin >> s; for (int j = 0; j < w; j++) { if (s[j] == 'O') rowcnt[i]++; else if (s[j] == 'I') colcnt[j]++; grid[i][j] = s[j]; } } int ans = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (grid[i][j] == 'J') ans += (rowcnt[i] * colcnt[j]); else if (grid[i][j] == 'O') rowcnt[i]--; else colcnt[j]--; if (rowcnt[i] == 0) break; if (colcnt[j] == 0) continue; } } cout << ans << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...