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
- Matrix
- 파이썬
- Data Structure
- simulation
- sorting
- Binary Tree
- java
- implement
- string
- Math
- 코테
- bit manipulation
- Class
- Stack
- database
- two pointers
- dynamic programming
- greedy
- 자바
- Method
- Counting
- 코딩테스트
- 구현
- geometry
- Number Theory
- array
- hash table
- Tree
- SQL
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2073. Time Needed to Buy Tickets 본문
1. Input
1) int[] tickets
- 0-indexed
- tickets[i] == i번째 사람이 사려는 티켓의 장수
2) int k
2. Output
1) k번째 사람이 티켓을 사는 데 걸리는 시간을 반환
- 0번째가 맨 앞이고, 티켓은 맨 앞에서만 살 수 있다.
- 티켓은 한 번에 1장씩 살 수 있고, 1장을 산 사람은 티켓을 더 사기 위해서는 맨 뒤에 가서 다시 줄을 서야 한다.
- 티켓 1장을 살 때 1초가 걸린다.
- 티켓을 다 샀다면 줄을 빠져 나온다.
3. Constraint
1) n == tickets.length
2) 1 <= n <= 100
3) 1 <= tickets[i] <= 100
4) 0 <= k < n
4. Example
Input: tickets = [2,3,2], k = 2 -> Output: 6
설명:
- 1초: [1,3,2]
- 2초: [1,2,2]
- 3초: [1,2,1]
- 4초: [0,2,1]
- 5초: [0,1,1]
- 6초: [0,1,0] // 2번째 사람 구매 완료
5. Code
1) 첫 코드(2023/04/26)
class Solution {
public int timeRequiredToBuy(int[] tickets, int k) {
int time = 0;
boolean end = false;
while(!end){
for(int i=0 ; i<=k ; i++){
if(tickets[i]!=0){
tickets[i]--; time++;
}
}
if(tickets[k]==0)
end = true;
else
for(int i=k+1 ; i<tickets.length ; i++){
if(tickets[i]!=0){
tickets[i]--; time++;
}
}
}
return time;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2094. Finding 3-Digit Even Numbers (0) | 2023.04.26 |
---|---|
[LeetCode/Easy] 2078. Two Furthest Houses With Different Colors (0) | 2023.04.26 |
[LeetCode/Easy] 2053. Kth Distinct String in an Array (0) | 2023.04.26 |
[LeetCode/Easy] 2047. Number of Valid Words in a Sentence (0) | 2023.04.26 |
[LeetCode/Easy] 2027. Minimum Moves to Convert String (0) | 2023.04.26 |