結果

問題 No.334 門松ゲーム
ユーザー kou6839kou6839
提出日時 2016-01-16 02:14:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,422 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 81,196 KB
実行使用メモリ 55,216 KB
最終ジャッジ日時 2024-09-19 19:49:06
合計ジャッジ時間 5,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
55,044 KB
testcase_01 AC 122 ms
53,996 KB
testcase_02 AC 138 ms
54,276 KB
testcase_03 AC 141 ms
55,116 KB
testcase_04 AC 140 ms
54,808 KB
testcase_05 AC 153 ms
55,152 KB
testcase_06 AC 164 ms
55,024 KB
testcase_07 AC 137 ms
53,872 KB
testcase_08 AC 152 ms
54,836 KB
testcase_09 AC 146 ms
54,156 KB
testcase_10 AC 128 ms
53,948 KB
testcase_11 AC 168 ms
55,120 KB
testcase_12 AC 153 ms
55,216 KB
testcase_13 AC 156 ms
54,836 KB
testcase_14 AC 144 ms
54,060 KB
testcase_15 AC 166 ms
55,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Frame;
import java.net.NetworkInterface;
import java.util.*;

public class Main {
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	static int[] dx = {0,1,0,-1};//→↓←↑
	static int[] dy = {1,0,-1,0};
	static class Pair{
		long weight,value;
		public Pair(long weight,long value) {
			// TODO Auto-generated constructor stub
			this.weight = weight;
			this.value = value;
		}
	}
	static boolean is_kadomatsu(int a,int b, int c){
		if(a==b || b==c || a==c) return false;
		if( (a<b && b<c) || (a>b && b>c) )return false;
		return true;
	}
	
	static boolean dfs(int used,int now){ //勝ちでtrue
		if( (n-Integer.bitCount(used))<3) return false;
		boolean win = false;
		for(int i=0;i<n;i++){
			for(int j=i+1;j<n;j++){
				for(int k=j+1;k<n;k++){
					if( ((used>>i)&1)==0 && ((used>>j)&1)==0 && ((used>>k)&1)==0 ){
						if(is_kadomatsu(kado[i], kado[j], kado[k])){
							if(dfs(used+(1<<i)+(1<<j)+(1<<k),now+1)){
								continue;
							}
							if(now==0)System.out.println(i+" "+j+" "+k);
							return true;
						}
					}
				}
			}
		}
		return win;
	}
	static int n;
	static int[] kado;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		n = sc.nextInt();
		kado = new int[n];
		for(int i=0;i<n;i++) kado[i] = sc.nextInt();
		if(!dfs(0,0))		System.out.println(-1);
	}
}
0