AtCoder Beginner Contest 109- D - Make Them Even(思维+模拟)
Posted fy1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AtCoder Beginner Contest 109- D - Make Them Even(思维+模拟)相关的知识,希望对你有一定的参考价值。
输入一个h行w列的矩阵,每一个点可以上下左右移动,问怎样才使矩阵中偶数最多且每次只能全部移动
思路只需要先对行进行一遍线性扫描,若为奇数则向左移动,在对最后一列进形扫描,若为奇数则向下移动,以此来达到答案
#include <bits/stdc++.h> using namespace std; int a[510][510],c[250250][4]; int h,w; int main() { ios::sync_with_stdio(false);cin.tie(0); cin>>h>>w; for(int i=0;i<h;i++) { for(int j=0;j<w;j++) { cin>>a[i][j]; } } int ans=0; for(int i=0;i<h;i++) { for(int j=0;j<w-1;j++) { if(a[i][j]%2==1) { c[ans][0]=i; c[ans][1]=j; c[ans][2]=i; c[ans][3]=j+1; ans++; a[i][j+1]++; } } } for(int i=0;i<h-1;i++) { if(a[i][w-1]%2==1) { c[ans][0]=i; c[ans][1]=w-1; c[ans][2]=i+1; c[ans][3]=w-1; ans++; a[i+1][w-1]++; } } cout<<ans<<endl; for(int i=0;i<ans;i++) { cout << c[i][0] + 1 << " " << c[i][1] + 1 << " " << c[i][2] + 1 << " " << c[i][3] + 1 << endl; } return 0; }
以上是关于AtCoder Beginner Contest 109- D - Make Them Even(思维+模拟)的主要内容,如果未能解决你的问题,请参考以下文章
AtCoder Beginner Contest 115 题解