이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1005;
int n, m;
int a[N][N];
ll ans;
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) cin >> a[i][j];
}
vector<int> h(m + 1, 0);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) h[j] = (a[i][j] == a[i - 1][j] ? h[j] + 1 : 1);
// for (int j = 1; j <= m; j++) cout << h[j] << ' ';
// cout << '\n';
// continue;
vector<int> l(m + 1, 0);
vector<int> r(m + 1, 0);
deque<int> d;
for (int j = 1; j <= m; j++) {
int t;
for (t = j; t <= m && a[i][t] == a[i][j]; t++) {
while (!d.empty() && h[t] <= h[d.back()]) d.pop_back();
l[t] = (d.empty() ? j : d.back() + 1);
d.push_back(t);
}
j = t - 1;
d.clear();
}
for (int j = m; j >= 1; j--) {
int t;
for (t = j; t >= 1 && a[i][t] == a[i][j]; t--) {
while (!d.empty() && h[t] < h[d.back()]) d.pop_back();
r[t] = (d.empty() ? j : d.back() - 1);
d.push_back(t);
}
j = t + 1;
d.clear();
}
for (int j = 1; j <= m; j++) {
ans += 1LL * (j - l[j] + 1) * (r[j] - j + 1) * h[j];
}
}
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |