leetcode495. Teemo Attacking
In LOL world, there is a hero called Teemo and his attacking can make his enemy Ashe be in poisoned condition. Now, given the Teemo's attacking ascending time series towards Ashe and the poisoning time duration per Teemo's attacking, you need to output the total time that Ashe is in poisoned condition.
You may assume that Teemo attacks at the very beginning of a specific time point, and makes Ashe be in poisoned condition immediately.
Example 1:
Input: [1,4], 2Output: Explanation: At time point 1, Teemo starts attacking Ashe and makes Ashe be poisoned immediately. This poisoned status will last 2 seconds until the end of time point 2. And at time point 4, Teemo attacks Ashe again, and causes Ashe to be in poisoned status for another 2 seconds. So you finally need to output 4.
Example 2:
Input: [1,2], 2Output: 3Explanation: At time point 1, Teemo starts attacking Ashe and makes Ashe be poisoned. This poisoned status will last 2 seconds until the end of time point 2. However, at the beginning of time point 2, Teemo attacks Ashe again who is already in poisoned status. Since the poisoned status won't add up together, though the second poisoning attack will still work at time point 2, it will stop at the end of time point 3. So you finally need to output 3.
Note:
LOL 안에 Teemo 라 는 영웅 이 있 습 니 다. 그의 기술 중 하 나 는 적 지역 에서 독 을 방출 하고 한동안 지속 할 수 있 는 것 입 니 다.현재 한 배열 에 전 달 됩 니 다. 각각 Teemo 가 스 킬 을 방출 하 는 시간 과 하나의 정수 가 스 킬 이 지속 되 는 시간 을 표시 합 니 다. 적 에 게 모두 얼마나 독 을 먹 었 는 지 물 어보 세 요.스 킬 을 시전 하 는 동안 스 킬 을 중복 시전 하면 스 킬 시간 은 현재 시간 부터 다시 계 산 됩 니 다.
아이디어 와 코드
쉽게 말 하면 이 스 킬 이 방출 되 는 시간 은 모두 두 가지 상황 이 있 습 니 다.
무독
독이 있다.
독이 없다 면 기술 지속 시간 을 총 시간 에 누적 하면 된다.독이 있 으 면 추가 로 연 장 된 독약 시간 을 계산 해 현재 시간 + 스 킬 지속 시간 - 이전 스 킬 지속 시간 을 통 해 알 수 있 습 니 다.코드 는 다음 과 같 습 니 다:
public int findPoisonedDuration(int[] timeSeries, int duration) {
if (timeSeries == null || timeSeries.length == 0) {
return 0;
}
int totalDuration = 0;
int timeLimit = 0;
for (int time : timeSeries) {
if (timeLimit <= time) {
totalDuration += duration;
} else {
totalDuration += time + duration - timeLimit;
}
timeLimit = time + duration;
}
return totalDuration;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
0부터 시작하는 LeetCode Day8 「1302. Deepest Leaves Sum」해외에서는 엔지니어의 면접에 있어서 코딩 테스트라고 하는 것이 행해지는 것 같고, 많은 경우, 특정의 함수나 클래스를 주제에 따라 실장한다고 하는 것이 메인이다. 빠른 이야기가 본고장에서도 행해지고 있는 것 같은 코...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.