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 | 31 |
Tags
- 안드로이드
- 백준
- 단축키
- 17837
- activity
- Java
- git
- intent
- 알고리즘
- Algorithm
- IntelliJ
- 큐빙
- 프로그래머스
- 제어반전
- github
- 두 동전
- goland
- spring
- mysql
- ubuntu
- 데이터
- insert
- Android
- service
- broadcastreceiver
- 데이터전달
- vscode
- Jenknis
- 16197
- data
Archives
- Today
- Total
해보자
프로그래머스_LV2_기능개발 본문
https://programmers.co.kr/learn/courses/30/lessons/42586
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 | #include <algorithm> #include <string> #include <vector> #include <queue> using namespace std; vector<int> solution(vector<int> progresses, vector<int> speeds) { vector<int> answer; queue<double> q; for (int i = 0; i < progresses.size(); i++) q.push((100 - progresses[i]) / speeds[i]); while (!q.empty()) { int count = 1; double t = q.front(); q.pop(); while (!q.empty() && t >= q.front()) { count++; q.pop(); } answer.push_back(count); } return answer; } | cs |
'C++ > Solve & Think' 카테고리의 다른 글
백준 14503번 로봇 청소기 (0) | 2020.04.19 |
---|---|
프로그래머스_LV2_다리를 지나는 트럭 (0) | 2020.02.26 |
백준_7576번_토마토 (0) | 2020.02.20 |
프로그래머스_LV2_프린터 (0) | 2020.02.19 |
백준_10610번_30 (0) | 2020.02.12 |