Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Tags more
Archives
Today
Total
관리 메뉴

개발자 일기장.

백준 2532. 반도체 설계 본문

취업/Algorithm.

백준 2532. 반도체 설계

Azderica 2020. 5. 30. 13:43

2352 반도체 설계

image

문제 알고리즘

  • LIS

풀이방법

  • LIS 풀이대로 풀었다.
  • 가장 긴 오름차순 부분 수열을 찾으면 된다.
  • 핵심 코드
import java.io.*;
import java.util.*;

public class Main {
    static final int MAX = 40000;

    static int N;
    static int Port[];
    static Vector<Integer> PortV;

    public static void main(String[] args) throws NumberFormatException, IOException {
        init();
        solution();
    }

    public static void init() throws NumberFormatException, IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        N = Integer.parseInt(br.readLine());
        StringTokenizer st = new StringTokenizer(br.readLine());
        Port = new int[N];
        for (int i = 0; i < N; i++)
            Port[i] = Integer.parseInt(st.nextToken());
        PortV = new Vector<Integer>();
    }

    public static void solution() {
        PortV.add(Port[0]);
        // i번째 port가 연결된다고 가정한 후
        for (int i = 1; i < N; i++) {
            // 수의 크기가 점점 증가하는 형태의 부분 수열 중 가장 긴 것을 선택
            if (Port[i] > PortV.lastElement()) {
                PortV.add(Port[i]);
            } else {
                int j = 0;
                for (j = 0; j < PortV.size(); j++) {
                    if (Port[i] > PortV.get(j))
                        continue;
                    else
                        break;
                }
                PortV.remove(j);
                PortV.add(j, Port[i]);
            }
        }

        System.out.println(PortV.size());
    }

}

문제 후 느낀점

  • LIS 문제

'취업 > Algorithm.' 카테고리의 다른 글

백준 2616. 소형기관차  (0) 2020.05.30
백준 2580. 스도쿠  (0) 2020.05.30
백준 1987. 알파벳  (0) 2020.05.30
백준 1793. 타일링  (0) 2020.05.30
백준 1260. DFS, BFS  (0) 2020.05.30