結果

提出番号 835
提出者 Pulmn
言語 C++
提出日時 2017-08-01 14:55:57
問題名 (42)オセロ
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 8320KB
2 AC 100% 1ms 7664KB
3 AC 100% 1ms 7968KB
4 AC 100% 1ms 7424KB
5 AC 100% 1ms 7968KB

ソースコード

#include <iostream>
#include <fstream>
#include <cassert>
#include <typeinfo>
#include <vector>
#include <stack>
#include <cmath>
#include <set>
#include <map>
#include <string>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <iomanip>
#include <cctype>
#include <random>
#include <complex>
#define syosu(x) fixed<<setprecision(x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> P;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<double> vd;
typedef vector<vd> vvd;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<char> vc;
typedef vector<vc> vvc;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<P> vp;
typedef vector<vp> vvp;
typedef vector<pll> vpll;
typedef pair<P,int> pip;
typedef vector<pip> vip;
const int inf=1<<29;
const ll INF=1ll<<60;
const double pi=acos(-1);
const double eps=1e-8;
const ll mod=1e9+7;
const int dx[4]={0,1,0,-1},dy[4]={1,0,-1,0};

const int DX[8]={-1,-1,-1,0,1,1,1,0},DY[8]={-1,0,1,1,1,0,-1,-1};

vs a(8);
char c;
int x,y;

void f(int I){
	int X=x,Y=y;
	while(1){
		X+=DX[I];
		Y+=DY[I];
		if(X<0||X>=8||Y<0||Y>=8||a[X][Y]=='-') break;
		if(a[X][Y]==c){
			while(X!=x||Y!=y){
				a[X][Y]=c;
				X-=DX[I];
				Y-=DY[I];
			}
			break;
		}
	}
}

int main(){
	for(int i=0;i<8;i++) cin>>a[i];
	int C;
	string tmp;
	cin>>C>>tmp;
	c=(C?'w':'b');
	x=tmp[1]-'1';
	y=tmp[0]-'A';
	for(int i=0;i<8;i++) f(i);
	a[x][y]=c;
	for(int i=0;i<8;i++) cout<<a[i]<<endl;
}