1706번: 크로스워드

동혁이는 크로스워드 퍼즐을 좋아한다. R×C 크기의 크로스워드 퍼즐을 생각해 보자. 이 퍼즐은 R×C 크기의 표로 이루어지는데, 퍼즐을 다 풀면 금지된 칸을 제외하고는 각 칸에 알파벳이 하나씩

www.acmicpc.net

 

 

 

 

 


 

 

 

  • 풀이

 

가로줄과 세로줄 별로 생성되는 String을 자료구조에 추가하여 정렬해주었습니다.

 

string에 뒤에 덧붙이는 작업이 많을 때 가변성이 있는 StringBuilder를 사용하여 시간을 조금 더 빠르게 작업할 수 있게 했습니다.

 

완성된 String들은 PriorityQueue에 추가하여 자동으로 오름차순으로 정렬시켜준 뒤 사전 순으로 가장 빠른 가장 앞에있는 queue의 데이터만 출력해주었습니다.

 

 

  • 코드

 

import java.io.IOException;
import java.io.InputStream;
import java.util.*;

public class Main {
	static String answer;

	public static void main(String[] args) throws Exception {
		SetData();
		System.out.println(answer);
	}

	// 데이터
	private static void SetData() throws Exception {
		InputReader in = new InputReader(System.in);

		int R = in.nextInt();
		int C = in.nextInt();
		char[][] array = new char[R][C];
		PriorityQueue<String> pq = new PriorityQueue<>();
		for(int i = 0; i < R; i++) {
			String s = in.nextLine();
			for(int j = 0; j < C ; j++)
				array[i][j] = s.charAt(j);
		}
		
		for(int i = 0; i < R; i++) {
			StringBuilder sb = new StringBuilder();
			for(int j = 0; j < C; j++) {
				if(array[i][j] == '#') {
					if(sb.length() > 1) {
						pq.add(sb.toString());
					}
					sb.setLength(0);
				} else {
					sb.append(array[i][j]);
					if(j == C-1) {
						if(sb.length() > 1) {
							pq.add(sb.toString());
						}
					}
				}
			}
		}
		
		for(int i = 0; i < C; i++) {
			StringBuilder sb = new StringBuilder();
			for(int j = 0; j < R; j++) {
				if(array[j][i] == '#') {
					if(sb.length() > 1) {
						pq.add(sb.toString());
					}
					sb.setLength(0);
				} else {
					sb.append(array[j][i]);
					if(j == R-1) {
						if(sb.length() > 1) {
							pq.add(sb.toString());
						}
					}
				}
			}
		}
		
		answer = pq.poll();
	}
}

class InputReader {
	private final InputStream stream;
	private final byte[] buf = new byte[8192];
	private int curChar, snumChars;

	public InputReader(InputStream st) {
		this.stream = st;
	}

	public int read() {
		if (snumChars == -1)
			throw new InputMismatchException();
		if (curChar >= snumChars) {
			curChar = 0;
			try {
				snumChars = stream.read(buf);
			} catch (IOException e) {
				throw new InputMismatchException();
			}
			if (snumChars <= 0)
				return -1;
		}
		return buf[curChar++];
	}

	public int nextInt() {
		int c = read();
		while (isSpaceChar(c)) {
			c = read();
		}
		int sgn = 1;
		if (c == '-') {
			sgn = -1;
			c = read();
		}
		int res = 0;
		do {
			res *= 10;
			res += c - '0';
			c = read();
		} while (!isSpaceChar(c));
		return res * sgn;
	}

	public long nextLong() {
		int c = read();
		while (isSpaceChar(c)) {
			c = read();
		}
		int sgn = 1;
		if (c == '-') {
			sgn = -1;
			c = read();
		}
		long res = 0;
		do {
			res *= 10;
			res += c - '0';
			c = read();
		} while (!isSpaceChar(c));
		return res * sgn;
	}

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

	public String nextLine() {
		int c = read();
		while (isSpaceChar(c))
			c = read();
		StringBuilder res = new StringBuilder();
		do {
			res.appendCodePoint(c);
			c = read();
		} while (!isEndOfLine(c));
		return res.toString();
	}

	public boolean isSpaceChar(int c) {
		return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
	}

	private boolean isEndOfLine(int c) {
		return c == '\n' || c == '\r' || c == -1;
	}
}

+ Recent posts