結果

問題 No.1016 三目並べ
ユーザー narushimanarushima
提出日時 2020-04-03 23:01:11
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,322 bytes
コンパイル時間 3,372 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 57,796 KB
最終ジャッジ日時 2023-09-16 04:14:00
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
50,044 KB
testcase_01 AC 45 ms
49,472 KB
testcase_02 AC 50 ms
49,532 KB
testcase_03 AC 80 ms
51,908 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	static final int mod = (int) 1e9 + 7;
	static final int DX[] = { -1, 0, 1, 0 }, DY[] = { 0, -1, 0, 1 };
	static final int[] DX8 = { -1, -1, -1, 0, 0, 1, 1, 1 }, DY8 = { -1, 0, 1, -1, 1, -1, 0, 1 };
	static final int INF = Integer.MAX_VALUE / 3;
	static final long LINF = Long.MAX_VALUE / 3;
	static final String nextLine = "\n";

	public static void main(String[] args) {
		FastScanner fs = new FastScanner(System.in);
		int t = fs.nextInt();
		for(int i=0;i<t;i++) {
			int n = fs.nextInt();
			String s = fs.next();
			char c[] = s.toCharArray();
			if(dfs(c,0))System.out.println("O");
			else System.out.println("X");
		}
	}
	
	static boolean check(char c[]) {
		int n = c.length;
		int cnt = 0;
		for(int i=0;i<n;i++) {
			if(c[i]=='o')cnt++;
			else cnt = 0;
			if(cnt>=3)return true;
		}
		return false;
	}
	
	static boolean dfs(char c[], int t) {
		int n = c.length;
		
		if(check(c))return true;
		//終了チェック
		boolean go = false;
		for(int i=0;i<n;i++) {
			if(c[i]=='-') go = true;	
		}
		if(!go)return false;
		
		if(t%2==0) {//Oさんの番
			boolean ret = false;
			for(int i=0;i<n;i++) {
				if(c[i]=='-') {
					c[i]='o';
					ret |= dfs(c, t+1);
					c[i]='-';
				}
			}
			return ret;
		}
		else {//Xさんの番
			for(int i=0;i<n;i++) {
				if(c[i]=='-') {
					c[i]='x';
					if(!dfs(c, t+1)) {
						c[i]='-';
						return false;
					}
					c[i]='-';
				}
			}
			return true;
		}
	}

	//MOD culculations
	static long plus(long x, long y) {
		long res = (x + y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long sub(long x, long y) {
		long res = (x - y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long mul(long x, long y) {
		long res = (x * y) % mod;
		return res < 0 ? res + mod : res;
	}

	static long div(long x, long y) {
		long res = x * pow(y, mod - 2) % mod;
		return res < 0 ? res + mod : res;
	}

	static long pow(long x, long y) {
		if (y < 0)
			return 0;
		if (y == 0)
			return 1;
		if (y % 2 == 1)
			return (x * pow(x, y - 1)) % mod;
		long root = pow(x, y / 2);
		return root * root % mod;
	}
}

//高速なScanner
class FastScanner {
	private BufferedReader reader = null;
	private StringTokenizer tokenizer = null;

	public FastScanner(InputStream in) {
		reader = new BufferedReader(new InputStreamReader(in));
		tokenizer = null;
	}

	public String next() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				tokenizer = new StringTokenizer(reader.readLine());
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken();
	}

	public String nextLine() {
		if (tokenizer == null || !tokenizer.hasMoreTokens()) {
			try {
				return reader.readLine();
			} catch (IOException e) {
				throw new RuntimeException(e);
			}
		}
		return tokenizer.nextToken("\n");
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}

	public int[] nextIntArray(int n) {
		int[] a = new int[n];
		for (int i = 0; i < n; i++)
			a[i] = nextInt();
		return a;
	}

	public long[] nextLongArray(int n) {
		long[] a = new long[n];
		for (int i = 0; i < n; i++)
			a[i] = nextLong();
		return a;
	}
}
0