#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define MOD 1000000007
typedef long long ll;
const int N=1e3+10;
ll a[N],h[N],num[N];
int n,m;
signed main(){
cin>>n>>m;
ll ans=0;
for(int i=1;i<=n;++i){
stack<int> st;
for(int j=1;j<=m;++j){
int idx=-1,x; cin>>x;
h[j]=(a[j]==x?h[j]:0)+1,a[j]=x;
if(a[j]!=a[j-1]){
idx=j-1;
num[j-1]=0;
while(!st.empty())st.pop();
}
while(!st.empty()&&h[st.top()]>=h[j])st.pop();
if(idx==-1)idx=(st.empty()?0:st.top());
assert(idx!=-1);
num[j]=num[idx]+(j-idx)*h[j];
st.push(j);
ans+=num[j];
}
}
cout<<ans;
#ifdef LOCAL
cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << "s.";
#endif
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
53 ms |
808 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
68 ms |
1188 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
71 ms |
1348 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
70 ms |
1440 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
342 ms |
6952 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
451 ms |
9928 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
445 ms |
9884 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
459 ms |
9892 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |