Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Lv.3
- 프로그래머스
- Algorithm
- C#
- 백준 2870번
- 플레이어 이동
- 백준 17070번
- Beakjoon
- 2870번 c++
- 코딩테스트
- Unity
- 오브젝트 풀링
- dfs
- 백준 1103번 게임
- 백준 17070번 c++
- 코테
- 2870번 수학숙제
- 2870번 수학숙제 c++
- 백준 1103번 c++
- 2870번
- c++
- 백준 c++ 2468번
- 유니티
- 백준 c++ 2870번
- 17070번
- 2468 c++
- Lv2
- 백준 1103번
- 백준
- 수학숙제
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 요격 시스템 본문
https://school.programmers.co.kr/learn/courses/30/lessons/181188
1. 정답코드 및 핵심 아이디어, 유의사항
- 모든 미사일을 요격해야 하는데, 주어진 좌표 범위의 개구간에서만 요격이 가능 (ex. 2-3일 경우, 범위 사이를 요격)
- 받는 데이터를 오름차순 or 내림차순 정렬하여 요격 가능 범위를 설정하고 요격 가능 범위가 줄어드는 조건과 요격 불가능 시 새로운 요격 범위를 지정하여 풀이
1. 데이터 정렬
2. 같이 요격이 가능한 미사일인지 순차적으로 체크
- 요격 범위 축소 조건 체크, 새로운 요격 그룹 추가 조건 체크
주석참조
using System;
using System.Collections.Generic;
public class Solution
{
public class DataClass
{
public int startPoint;
public int endPoint;
public DataClass(int startPoint, int endPoint)
{
this.startPoint = startPoint;
this.endPoint = endPoint;
}
}
public int solution(int[,] targets)
{
int answer = 0;
List<DataClass> list = new List<DataClass>();
for (int i = 0; i < targets.GetLength(0); i++)
list.Add(new DataClass(targets[i, 0], targets[i, 1]));
// 데이터 정렬 (오름차순)
list.Sort((x, y) => CompareTo(x, y));
// 초기 값 세팅 (첫 그룹 값 세팅)
int currEndPoint = int.MaxValue;
answer++;
// 같이 요격될 수 있는 그룹인지 순서대로 체크
for (int i = 0; i < list.Count; i++)
{
// 요격 범위 축소
if (currEndPoint > list[i].endPoint)
currEndPoint = list[i].endPoint;
// 새로운 요격 그룹 추가
if (currEndPoint <= list[i].startPoint)
{
answer++;
currEndPoint = list[i].endPoint;
}
}
return answer;
}
// 오름차순 정렬 메서드
public int CompareTo(DataClass x, DataClass y)
{
if (x.startPoint == y.startPoint)
return 0;
return (x.startPoint > y.startPoint) ? 1 : -1;
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 두 큐 합 같게 만들기 (0) | 2023.11.13 |
---|---|
[프로그래머스 C#] Lv.2 할인 행사 (0) | 2023.11.12 |
[프로그래머스 C#] Lv.2 두 원 사이의 정수 쌍 (0) | 2023.11.07 |
[프로그래머스 C#] Lv.2 행렬 테두리 회전하기 (2) | 2023.11.03 |
[프로그래머스 C#] Lv.2 숫자 카드 나누기 (0) | 2023.10.31 |