728x90
๐๋ฌธ์ ๋ณด๋ฌ๊ฐ๊ธฐ
๐จ๐ปํ์ด ๊ณผ์
ํ(Queue)๋ฅผ ์ด์ฉํ์ฌ ํ์์ต๋๋ค. ํ์ด๊ณผ์ ์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
- for ๋ฌธ์ ํตํด, ๊ฐ ์์
์ ์ํ
- ํ์ฌ ์์ ์ ๋ฐฐํฌ ๊ฐ๋ฅํ ๋จ์ ์ผ์๋ฅผ ๊ณ์ฐ
- ํ์ ์๋ฌด๊ฒ๋ ์๋ค๋ฉด, push()ํ๊ณ ๋ค์ ๋ฃจํ๋ก ์ด๋
- ํ์ front๋ณด๋ค ํ์ฌ ์์ ์ ๋ฐฐํฌ ๊ฐ๋ฅํ ๋จ์ ์ผ์๊ฐ ์๋ค๋ฉด, front๊ฐ ๋ฐฐํฌ ๋ ๋ ๊ฐ์ด ๋ฐฐํฌ๋๋ฏ๋ก push()
- ์๋๋ผ๋ฉด, ํ์ฌ ํ์ ์๋ ์์ ๊ฐ์๋ฅผ answer์ ์ถ๊ฐํ๊ณ , ํ ์น ๋น์ฐ๊ธฐ
- ๋ค ๋น์ด ํ, ํ์ฌ ์์ ์ ๋ฐฐํฌ ๊ฐ๋ฅํ ๋จ์ ์ผ์๋ฅผ push()
- for ๋ฌธ์ ๋ค ๋๊ณ ๋๋ฉด, ๋ง์ง๋ง ์์ ์ answer์ ์ถ๊ฐ
โ๏ธ์์ค ์ฝ๋ ๋ฐ ๊ฒฐ๊ณผ
#include <vector>
#include <queue>
using namespace std;
const int MAX_RATE = 100;
vector<int> solution(vector<int> progresses, vector<int> speeds) {
vector<int> answer;
queue<int> days;
int length = progresses.size();
for (int i = 0; i < length; i++) {
int remainigRate = MAX_RATE - progresses[i];
int requiredDays = remainigRate / speeds[i];
requiredDays += (remainigRate % speeds[i] != 0) ? 1 : 0;
if (days.empty()) {
days.push(requiredDays);
continue;
}
// ์ด์ ์์
๋จ์ ์ผ์๋ณด๋ค ์ ์ผ๋ฉด ๊ฐ์ด ๋ฐฐํฌํด์ผ ํจ
if (requiredDays <= days.front()) {
days.push(requiredDays);
continue;
}
int releaseNum = days.size();
answer.push_back(releaseNum);
while (!days.empty()) days.pop();
days.push(requiredDays);
}
answer.push_back(days.size());
return answer;
}
728x90
๋ฐ์ํ
'๐คAlgorithm > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Programmers] Lv2. ํ๊ฒ ๋๋ฒ | C++ (0) | 2023.06.20 |
---|---|
[Programmers] Lv2. ๋ด์ค ํด๋ฌ์คํฐ๋ง | C++ (0) | 2023.06.20 |
[Programmers] Lv2. ์์ | C++ (0) | 2023.06.15 |
[Programmers] Lv2. ํ๋ ฌ์ ๊ณฑ์ | C++ (0) | 2023.06.15 |
[Programmers] Lv2. n^2 ๋ฐฐ์ด ์๋ฅด๊ธฐ | C++ (0) | 2023.06.14 |