博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #157 (Div. 2) A. Little Elephant and Chess
阅读量:6828 次
发布时间:2019-06-26

本文共 646 字,大约阅读时间需要 2 分钟。

题目:http://codeforces.com/contest/259/problem/A

判断一个棋盘经过行操作后能否成为一个正常的黑白相间的棋盘

思路:因为不涉及列操作 只要每行都是黑白相间就可以满足条件

#include 
#include
using namespace std;int a,b,n;int main(){ bool ans=true; char start,previous,current; for(int i=0;i<8;i++) { cin >> current; start=previous=current; for(int j=0;j<6;j++) { cin>>current; if(current==previous)ans=0; previous=current; } cin>>current; if(current==previous||current==start) ans=0; } if(ans) cout << "YES"<

 

转载于:https://www.cnblogs.com/danielqiu/archive/2013/01/16/2863127.html

你可能感兴趣的文章
学霸也要会看书
查看>>
解读tensorflow之rnn 的示例 ptb_word_lm.py
查看>>
Linux内核--并发【转】
查看>>
关于对FLASH开发,starling、starling feathers、starling MVC框架的理解
查看>>
Nginx的基本配置案例
查看>>
一线架构师带你玩性能优化
查看>>
13. 关于IDEA工具在springboot整合mybatis中出现的Invalid bound statement (not found)问题
查看>>
mysql监测工具
查看>>
Centos防火墙设置与端口开放的方法
查看>>
工作总结 razor 接收datatable
查看>>
[leetcode]Unique Paths II
查看>>
C#调用dll时的类型转换总结
查看>>
在线预览Word,Excel
查看>>
Exception loading sessions from persistent storage 这个问题的解决
查看>>
python dns server开源列表 TODO
查看>>
Go中的make和new的区别
查看>>
javascript 面向对象编程(工厂模式、构造函数模式、原型模式)
查看>>
最小二乘法多项式拟合的Java实现
查看>>
ubuntu下安装tomcat
查看>>
Excel两列查找重复值
查看>>