codeforces 1391D 상압 dp
17048 단어 codeforcesDP
#pragma GCC optimize("Ofast","inline","-ffast-math")
#pragma GCC target("avx,sse2,sse3,sse4,mmx")
#include
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
#define rep(i, a, n) for(int i = a; i <= n; i++)
#define per(i, a, n) for(int i = n; i >= a; i--)
#define IOS std::ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
#define fopen freopen("file.in","r",stdin);freopen("file.out","w",stdout);
#define fclose fclose(stdin);fclose(stdout);
const int inf = 1e9;
const ll onf = 1e18;
const int maxn = 1e6+10;
inline int read(){
int x=0,f=1;char ch=getchar();
while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}
while (isdigit(ch)){x=(x<<3)+(x<<1)+ch-48;ch=getchar();}
return x*f;
}
char s[maxn];
int a[4][maxn];
signed main(){
int n = read(), m=read();
if(n>=4){printf("-1
"); return 0;}
if(n==1){printf("0
"); return 0;}
rep(i,1,n){
scanf("%s", s+1);
rep(j,1,m){
a[i][j] = s[j]-'0';
}
}
if(n==2){
int o = 0, e = 0;
rep(i,1,m){
int tmp = a[1][i]+a[2][i];
if(i&1){
if(~tmp&1) o++;
else e++;
}else {
if(tmp&1) o++;
else e++;
}
}
printf("%d
", min(o,e));
return 0;
}
int ans = inf;
rep(i,0,3){
int tmp = 0;
rep(j,1,m){
int c1 = (a[1][j]+a[2][j])&1;
int c2 = (a[2][j]+a[3][j])&1;
int t = c1<<1|c2;
if(j&1){
if(i!=t) tmp++;
}else{
if(i+t!=3) tmp++;
}
}
ans = min(tmp, ans);
}
printf("%d
", ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.