본문 바로가기
코딩테스트 준비/백준 C#

백준 C# 10810

by 코딩하는 돼징 2023. 4. 11.
반응형
using System;
using System.Collections.Generic;
using System.Text;
namespace baek2
{
    class Program
    {
        
        static void Main(string[] args)
        {
            string input_NM = Console.ReadLine();
            string[] token_NM = input_NM.Split();
            int N = int.Parse(token_NM[0]);
            int M = int.Parse(token_NM[1]);

            int[] arr = new int[N];
            for(int i=0; i < N; i++)
            {
                arr[i] = 0;
            }
            for (int i = 0; i < M; i++)
            {
                string input = Console.ReadLine();
                string[] token = input.Split();

                int a = int.Parse(token[0]);
                int b = int.Parse(token[1]);
                int c = int.Parse(token[2]);
                
                for(int j = a-1; j<=b-1; j++)
                {
                    //Console.WriteLine($"{a-1} {b-1} {c} j의 값은 {j}");
                    arr[j] = c;
                }
            }
            
            foreach(int num in arr)
            {
                Console.Write(num + " ");
            }
        }
    }
}
반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# 5597  (0) 2023.04.12
백준 C# 10813  (0) 2023.04.12
백준 C# 2562  (0) 2023.04.11
백준 C# 10818  (0) 2023.04.11
백준 C# 10871  (0) 2023.04.11

댓글