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
- geometry
- java
- 자바
- greedy
- SQL
- 파이썬
- two pointers
- sorting
- Math
- Stack
- hash table
- Class
- Tree
- Binary Search
- Binary Tree
- string
- dynamic programming
- Method
- 구현
- Counting
- array
- simulation
- Data Structure
- Number Theory
- implement
- database
- Matrix
- 코딩테스트
- 코테
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 455. Assign Cookies 본문
1. Input
1) int[] g
- i번째 아이는 g[i] 이상의 크기인 쿠키를 원한다.
2) int[] s
- i번째 쿠키의 크기는 s[i]이다.
2. Output
1) 아이들이 원하는대로 쿠키를 나눠줄 때, 만족하는 아이의 최대 수를 반환
3. Constraint
1) 1 <= g.length <= 3 * 10^4
2) 0 <= s.length <= 3 * 10^4
3) 1 <= g[i], s[j] <= 2^31 - 1
4. Example
Input: g = [1,2,3], s = [1,1] -> Output: 1
- 크기가 1인 쿠키로 만족시킬 수 있는 아이는 g[0] 1명이다.
5. Code
1) 첫 코드(2023/02/22)
int answer = 0, index = 0;
Arrays.sort(g); Arrays.sort(s);
for(int want : g){
for(int i=index ; i<s.length ; i++){
if(want<=s[i]){
answer++; index=i+1; break;
}
}
}
return answer;
- 성능이 구리구리구리구리..
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 대충 만든 자판 (0) | 2023.02.23 |
---|---|
[프로그래머스/Lv.2] 행렬의 곱셈 (0) | 2023.02.22 |
[LeetCode/Medium] 454. 4Sum II (0) | 2023.02.22 |
[LeetCode/Medium] 442. Find All Duplicates in an Array (0) | 2023.02.21 |
[LeetCode/Medium] 438. Find All Anagrams in a String (0) | 2023.02.21 |