Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

코드와이

[BAEKJOON] 1107. 리모컨 본문

acmicpc

[BAEKJOON] 1107. 리모컨

코드와이 2021. 5. 27. 02:02

 

문제링크

https://www.acmicpc.net/problem/1107

 

1107번: 리모컨

첫째 줄에 수빈이가 이동하려고 하는 채널 N (0 ≤ N ≤ 500,000)이 주어진다.  둘째 줄에는 고장난 버튼의 개수 M (0 ≤ M ≤ 10)이 주어진다. 고장난 버튼이 있는 경우에는 셋째 줄에는 고장난 버튼

www.acmicpc.net

 

주어진 수(n)의 자리 수(length)를 파악해서 그 자리 수, 자리 수 - 1, 자리 수 + 1에 해당하는 수를 모두 탐색한다.

package acmicpc.Gold5;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
import java.util.StringTokenizer;

public class 리모컨 {

	static int n, length;
	static boolean[] check;
	static PriorityQueue<Num> pq;
	static class Num{
		int n, cnt;

		public Num(int n, int cnt) {
			super();
			this.n = n;
			this.cnt = cnt;
		}
	}
	public static void main(String[] args) throws NumberFormatException, IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st;
		
		n = Integer.parseInt(br.readLine());
		length = Integer.toString(n).length();
		int k = Integer.parseInt(br.readLine());
		check = new boolean[10];
		
		if(k > 0) {
			st = new StringTokenizer(br.readLine());
			for(int i = 0 ; i < k ; i++) {
				int x = Integer.parseInt(st.nextToken());
				check[x] = true;
			}
		}
		
		if(n == 100) {
			System.out.println(0);
			return;
		}
		pq = new PriorityQueue<>((o1, o2) -> (o1.cnt - o2.cnt));
		pq.add(new Num(100, Math.abs(n - 100)));
		go(0,"");
		if(length > 1) go2(0,"");
		go3(0,"");

		System.out.println(pq.poll().cnt);
	}
	
	public static void go(int cnt, String x) {
		
		if(cnt == length) {
			if( pq.peek().cnt > length + Math.abs(n - Integer.parseInt(x))) {
				pq.add(new Num(Integer.parseInt(x), length + Math.abs(n - Integer.parseInt(x))));
			}
			return;
		}
		
		for(int i = 0 ; i < 10 ; i++) {
			if(!check[i]) {
				go(cnt+1, x + Integer.toString(i).charAt(0));
			}
		}
	}
	
	public static void go2(int cnt, String x) {
		if(cnt == length - 1) {
			if( pq.peek().cnt > length - 1 + Math.abs(n - Integer.parseInt(x))) {
				pq.add(new Num(Integer.parseInt(x), length - 1 + Math.abs(n - Integer.parseInt(x))));
			}
			return;
		}
		
		for(int i = 0 ; i < 10 ; i++) {
			if(!check[i]) {
				go2(cnt+1, x + Integer.toString(i).charAt(0));
			}
		}
	}

	public static void go3(int cnt, String x) {
		
		if(cnt == length + 1) {
			if( pq.peek().cnt > length + 1 + Math.abs(n - Integer.parseInt(x))) {
				pq.add(new Num(Integer.parseInt(x), length + 1 + Math.abs(n - Integer.parseInt(x))));
			}
			return;
		}
		
		for(int i = 0 ; i < 10 ; i++) {
			if(!check[i]) {
				go3(cnt+1, x + Integer.toString(i).charAt(0));
			}
		}
	}
}

'acmicpc' 카테고리의 다른 글

[BAEKJOON] 2225. 합분해  (0) 2021.05.27
[BAEKJOON] 3055. 탈출  (0) 2021.05.27
[BAEKJOON] 14891. 톱니바퀴  (0) 2021.05.21
[BAEKJOON] 14499. 주사위 굴리기  (0) 2021.05.20
[BAEKJOON] 3190. 뱀  (0) 2021.05.18