This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int sz = 3e3 + 9;
char a[sz][sz];
signed main() {
cin.tie(nullptr)->sync_with_stdio(false);
int h, w;
cin >> h >> w;
map <int, vector <int>> os, is;
int r = 0;
for (int i = 1; i <= h; i ++) {
for (int j = 1; j <= w; j ++) {
cin >> a[i][j];
if ('O' == a[i][j]) {
os[i].push_back(j);
} else if ('I' == a[i][j]) {
is[j].push_back(i);
}
}
}
for (int i = 1; i <= h; i ++) {
for (int j = 1; j <= w; j ++) {
if ('J' == a[i][j]) {
if (!os.count(i) || !is.count(j)) continue;
int oc = os[i].end() - upper_bound(begin(os[i]), end(os[i]), j);
int ic = is[j].end() - upper_bound(begin(is[j]), end(is[j]), i);
r += oc * ic;
}
}
}
cout << r << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |