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 | 29 | 30 |
Tags
- 백준 c++ 9375번
- 프로그래머스
- Ainimation Blending
- Back Tracking
- Unity
- C#
- Animation State Machine
- 9375번
- 양과 늑대
- pccp 기출문제 1번
- 오브젝트 풀링
- dp 알고리즘
- Blend Type
- CSharp #자료구조
- 유니티
- 미로 탈출 명령어
- LayerMark
- 2D슈팅게임
- dfs
- Algorithm
- Hp바
- 플레이어 방향전환
- 연속 펄스 부분 수열의 합
- 플레이어 이동
- Lv.3
- pccp 기출문제 3번
- 충돌위험 찾기
- Lv2
- pccp 기출문제 2번
- heap tree
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.2 퍼즐게임 (PCCP 기출문제 2번) 본문
https://school.programmers.co.kr/learn/courses/30/lessons/340212
1. 정답코드 및 핵심 아이디어, 유의사항
제한 시간 내에 퍼즐을 모두 해결하기 위한 숙련도의 최소 값을 찾는 문제
- 난이도에서 숙련도를 뺀 값이 현재 퍼즐을 틀리는 횟수가 됨
- 퍼즐을 틀리는 여부에 관계 없이 퍼즐을 푸는 시간은 무조건 드는 시간
- 현재 퍼즐을 틀릴 경우 이전 퍼즐을 다시 풀어야 함
-> ( 이전 퍼즐 풀이 시간 + 현재 퍼즐 풀이 시간 ) * 틀리는 횟수
+ 이진 탐색 ( 최적화 )
코드 참조
using System;
using System.Linq;
public class Solution
{
public bool IsClear(ref int[] diffs, ref int[] times, long limit, int level)
{
limit -= times[0];
for(int i = 1; i < diffs.Length; i++)
{
limit -= times[i];
int count = diffs[i] - level;
if(count > 0)
limit -= count * (times[i - 1] + times[i]);
if(limit < 0)
return false;
}
return true;
}
public int solution(int[] diffs, int[] times, long limit)
{
int left = 1;
int right = diffs.Max();
while(left <= right)
{
int mid = (left + right) / 2;
if(IsClear(ref diffs, ref times, limit, mid))
right = mid - 1;
else
left = mid + 1;
}
return left;
}
}
'CodingTest > Programmers Lv.2' 카테고리의 다른 글
[프로그래머스 C#] Lv.2 마법의 엘리베이터 (0) | 2024.09.24 |
---|---|
[프로그래머스 C#] Lv.2 충돌위험 찾기 (PCCP 기출문제 3번) (0) | 2024.09.23 |
[프로그래머스 C#] Lv.2 디펜스 게임 (0) | 2024.05.22 |
[프로그래머스 C#] Lv.2 피로도 (0) | 2024.05.22 |
[프로그래머스 C#] Lv.2 과제 진행하기 (0) | 2024.05.22 |