일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 힙덤프
- html
- union_find
- deque
- 스프링부트
- dfs
- 큐
- javascript
- Calendar
- GC로그수집
- map
- Union-find
- List
- spring boot
- math
- NIO
- JPA
- set
- Properties
- 스택
- date
- 리소스모니터링
- Java
- string
- sql
- scanner
- BFS
- CSS
- alter
- priority_queue
- Today
- Total
목록알고리즘/그리디 (10)
매일 조금씩
#include #include #include #include using namespace std; string solution(string number, int k) { stack st; int size = number.length() - k; for(int i = 0; i 0){ if(st.top() < num ){ st.pop(); k--; } else{ break; } } st.push(num); } while(st.size() != size){ st.pop(); } string answer = ""; while(!st.empty()){ answer += st.top(); s..
#include #include #include using namespace std; int solution(string name) { int* arr = new int[name.length()]; int change = 0; int len = name.length(); for(int i = 0; i = (('Z'+1) - cur)){ sum += (('Z'+1) ..
#include #include using namespace std; int solution(int n, vector lost, vector reserve) { vector v(n+1, 1); for(int i = 0; i
#include #include //memset #include #include using namespace std; int N, K; bool compare(int a, int b) {// 내림차순 정렬 return a > b;// 이렇게 리턴하게 되면 내림차순 정렬됨 } int main(void) { cin >> N >> K; vector v(N); for (int i = 0; i > v[i]; } int ans = 0; sort(v.begin(), v.end(), compare);// compare함수를 사용한 내림차순정렬 for (int i = 0; i = 0) { ans++; K -= v[i]; } ..