Codeforces 38B - Chess
Posted Wisdom+.+
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 38B - Chess相关的知识,希望对你有一定的参考价值。
思路:懂点象棋的规则就可以,看看哪些点可以放马。
代码:
#include<bits/stdc++.h> using namespace std; #define ll long long int main() { ios::sync_with_stdio(false); cin.tie(0); string s,t; cin>>s>>t; int x=s[0]-‘a‘+1,y=s[1]-‘0‘; int a=t[0]-‘a‘+1,b=t[1]-‘0‘; int cnt=0; for(int i=1;i<=8;i++) { for(int j=1;j<=8;j++) { if((i!=a||j!=b)&&i!=x&&j!=y&&(i-x)*(i-x)+(j-y)*(j-y)!=5&&(i-a)*(i-a)+(j-b)*(j-b)!=5)cnt++; } } cout<<cnt<<endl; return 0; }
以上是关于Codeforces 38B - Chess的主要内容,如果未能解决你的问题,请参考以下文章
@codeforces - 793G@ Oleg and chess
Codeforces Round #379 (Div. 2) D. Anton and Chess(模拟)