#include <bits/stdc++.h>
using namespace std;
int h[1005][1005];
int ans[1005][1005];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m;
char c;
cin>>n>>m;
for(int i = 1; i <= n; i++){
vector<pair<int, int> > v;
v.push_back({0, 0});
for(int j = 1; j <= m; j++){
h[i][j] = h[i - 1][j] + 1;
cin>>c;
if(c == '#') h[i][j] = 0;
while(!v.empty() && v.back().second >= h[i][j]) v.pop_back();
v.push_back({j, h[i][j]});
for(int l = v.size() - 2; l >= 0; l--){
ans[v[l + 1].second][j - v[l].first]++;
ans[v[l].second][j - v[l].first]--;
}
}
}
for(int i = n; i > 0; i--){
for(int j = m; j > 0; j--){
ans[i][j] += ans[i + 1][j] + ans[i][j + 1] - ans[i + 1][j + 1];
}
}
long long res = 0;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
res += 1LL * i * j * ans[i][j];
}
}
cout<<res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
2808 KB |
Output is correct |
2 |
Correct |
10 ms |
2808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
2808 KB |
Output is correct |
2 |
Correct |
11 ms |
2808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
2808 KB |
Output is correct |
2 |
Correct |
10 ms |
2808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
62 ms |
7952 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
101 ms |
10968 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
133 ms |
8592 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
20 ms |
9208 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
194 ms |
18704 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |