[JAVA] SWEA 5789 - 현주의 상자 바꾸기

hyng·2022년 2월 21일
0

SWEA

목록 보기
38/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        int T = sc.nextInt();
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            int N = sc.nextInt();
            int Q = sc.nextInt();

            int num[] = new int[N+1];
            for(int i=1; i<=Q; i++){
                int L = sc.nextInt();
                int R = sc.nextInt();

                for(int j=L; j<=R; j++){
                    num[j] = i;
                }
            }
            for(int i=1; i<=N; i++){
                sb.append(num[i]).append(" ");
            }
            sb.append("\n");

        }
        System.out.println(sb);

    }
	
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글