This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//!yrt tsuj uoy srettam gnihton no emoc
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define pb push_back
#define mp make_pair
#define pii pair <int, int>
#define fast_io ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define F first
#define S second
const int maxn = 3e5 + 10, N = 55;
int par[maxn * N];
int t[maxn];
int cnt[maxn][N];
string s[maxn];
int get_par(int x){
if(x == par[x]){
return x;
}
return par[x] = get_par(par[x]);
}
void merge(int x, int y){
x = get_par(x);
y = get_par(y);
par[x] = y;
}
int main(){
fast_io;
int n, m;
cin >> n >> m;
int c = 0;
for(int i = 0; i < n; i ++){
cin >> s[i];
for(int j = 0; j < m; j ++){
t[i] += (s[i][j] == '1');
}
}
ll ans = 0;
for(int T = 0; T < n; T ++){
c = 0;
for(int i = 0; i < n; i ++){
for(int j = 0; j < m; j ++){
if(s[i][j] == '1'){
cnt[i][j] = c;
par[c] = c;
c ++;
}
}
}
int an = 0;
for(int j = T; j < n; j ++){
an += t[j];
// cout << "p: " << ans << endl;
for(int k = 0; k < m; k ++){
if(s[j][k] == '1'){
if((j > T) && s[j - 1][k] == '1'){
if(get_par(cnt[j][k]) != get_par(cnt[j - 1][k])){
merge(cnt[j][k], cnt[j - 1][k]);
an --;
}
}
if(k < m - 1 && s[j][k + 1] == '1'){
if(get_par(cnt[j][k]) != get_par(cnt[j][k + 1])){
merge(cnt[j][k], cnt[j][k + 1]);
an --;
}
}
}
}
ans += an;
}
// cout << "ans = " << ans << endl;
}
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... |