結果

問題 No.179 塗り分け
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-07 14:43:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,122 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 79,628 KB
実行使用メモリ 63,088 KB
最終ジャッジ日時 2024-04-10 00:10:40
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,008 KB
testcase_01 AC 50 ms
50,100 KB
testcase_02 AC 48 ms
50,252 KB
testcase_03 AC 48 ms
50,264 KB
testcase_04 AC 51 ms
50,296 KB
testcase_05 AC 50 ms
50,284 KB
testcase_06 AC 176 ms
52,988 KB
testcase_07 WA -
testcase_08 AC 57 ms
50,128 KB
testcase_09 AC 55 ms
50,392 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;
import java.io.*;

public class Main {
	static FastScanner sc = new FastScanner(System.in);
	public static void main(String[] args) {
		int H = sc.nextInt();
		int W = sc.nextInt();
		LinkedList<Point> p = new LinkedList<Point>();
		String s;
		char c;
		for (int i=0; i<H; i++) {
			s = sc.next();
			for (int j=0; j<s.length(); j++) {
				c = s.charAt(j);
				if (c=='#') {p.add(new Point(i,j));}
			}
		}
		int size = p.size();
		if (size%2==1) {out.println("NO"); return;}
		
		//ここから平行移動処理
		LinkedList<Point> p2 = new LinkedList<Point>();
		int y,x;
		size = p.size()/2;
		for (int i=0; i<H; i++) {
			for (int j=1-W; j<W; j++) {
				p2 = (LinkedList<Point>)p.clone();
				for (int k=0; k<size; k++) {
					y = p2.getFirst().getY()+i;
					x = p2.removeFirst().getX()+j;
					for (int l=0; l<p2.size(); l++) {
						if (p2.get(l).getY()==y && p2.get(l).getX()==x) {
							p2.remove(l);
						}
					}
				}
				if (p2.size()==0) {out.println("YES"); return;}
			}
		}
		out.println("NO");
	}
}

class Point {
	private int y;
	private int x;
	public Point (int y, int x) {
		this.y = y;
		this.x = x;
	}
	public int getY () {
		return this.y;
	}
	public int getX () {
		return this.x;
	}
	public int setY (int y) {
		return this.y = y;
	}
	public int setX (int x) {
		return this.x = x;
	}
}



class FastScanner implements Closeable {
	private final InputStream in;
	private final byte[] buffer = new byte[1024];
	private int ptr = 0;
	private int buflen = 0;
	public FastScanner(InputStream in) {this.in = in;}
	private boolean hasNextByte() {
		if (ptr < buflen) {return true;}
		else{
			ptr = 0;
			try {buflen = in.read(buffer);}
			catch (IOException e) {e.printStackTrace();}
			if (buflen <= 0) {return false;}
		}
		return true;
	}
	private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
	private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
	public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();}
	public String next() {
		if (!hasNext()) throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = readByte();
		while(isPrintableChar(b)) {
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	public long nextLong() {
		if (!hasNext()) throw new NoSuchElementException();
		long n = 0;
		boolean minus = false;
		int b = readByte();
		if (b == '-') {
			minus = true;
			b = readByte();
		}
		if (b < '0' || '9' < b) {throw new NumberFormatException();}
		while(true){
			if ('0' <= b && b <= '9') {
				n *= 10;
				n += b - '0';
			}else if(b == -1 || !isPrintableChar(b)){return minus ? -n : n;}
			else{throw new NumberFormatException();}
			b = readByte();
		}
	}
	public int nextInt() {
		long nl = nextLong();
		if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
		return (int) nl;
	}
	public double nextDouble() { return Double.parseDouble(next());}
	public void close() {
		try {in.close();}
		catch (IOException e) {}
	}
}
0