CS/알고리즘_문제풀이(자바)

리모컨

Jedy_Kim 2021. 11. 1. 13:29
728x90

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

 

1107번: 리모컨

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

www.acmicpc.net

 

// 코드

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import java.util.*;
import java.io.*;
 
 
public class Main {  
  
  static boolean[] brokenBtns = new boolean[10];
  
  static int check(int channel) {
    
    if(channel == 0) {
      if(brokenBtns[channel]) return 0;
      else return 1;
    }
    
    int ret = 0;
    while( channel > 0 ) {
      // 고장난 버튼이 있는 경우
      if( brokenBtns[ channel % 10 ] ) return 0;
      channel /= 10;
      // 숫자 버튼을 누르는 횟수 증가
      ret += 1
    }
    return ret;
  }
  
  // main
  public static void main(String[] args) throws Exception{
    
    // Please Enter Your Code Here
    BufferedWriter bw  = new BufferedWriter(new OutputStreamWriter(System.out));
    BufferedReader br  = new BufferedReader(new InputStreamReader(System.in)); 
    
    int N = Integer.parseInt(br.readLine());
    int M = Integer.parseInt(br.readLine());
    
    if(M > 0) {
      StringTokenizer st = new StringTokenizer(br.readLine());
      for(int i=0; i<M; ++i) 
        brokenBtns[Integer.parseInt(st.nextToken())] = true;
    }
    
    int myMin = Math.abs(N - 100);
    for(int i=0; i<=1000000++i) {
      int len = check(i);
      if(len > 0) {
        // +, -   버튼을 누른 횟수
        int pressCnt = Math.abs(N - i);
        // 최소 이동횟수 계산
        myMin = Math.min(myMin, (len + pressCnt));
      }
    }
    
    bw.write(String.valueOf(myMin));
    bw.flush();
    bw.close();
    br.close();
  } 
cs

 

반응형

'CS > 알고리즘_문제풀이(자바)' 카테고리의 다른 글

숨바꼭질 4  (0) 2021.11.02
카잉달력  (0) 2021.11.01
합분해 😰 어려움..  (0) 2021.10.21
제곱수의 합  (0) 2021.10.21
연속합 2  (0) 2021.10.21