Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

기능개발 #403

Closed
Tracked by #396
fkdl0048 opened this issue Nov 26, 2024 · 0 comments
Closed
Tracked by #396

기능개발 #403

fkdl0048 opened this issue Nov 26, 2024 · 0 comments
Assignees
Milestone

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Nov 26, 2024

// progresse와 speed를 넘기면 작업 시간을 반환해주는 함수
// 반복으로 작업시간을 가지고 

#include <string>
#include <vector>
#include <queue>
#include <iostream>

using namespace std;

vector<int> solution(vector<int> progresses, vector<int> speeds) {
    vector<int> result;
    queue<int> daysQueue;
    
    for (size_t i = 0; i < progresses.size(); ++i) {
        int remainingProgress = 100 - progresses[i];
        int days = (remainingProgress + speeds[i] - 1) / speeds[i];
        daysQueue.push(days);
    }
    
    while (!daysQueue.empty()) {
        int currentDay = daysQueue.front();
        daysQueue.pop();
        int count = 1;
        
        while (!daysQueue.empty() && daysQueue.front() <= currentDay) {
            daysQueue.pop();
            count++;
        }
        
        result.push_back(count);
    }
    
    return result;
}
@fkdl0048 fkdl0048 self-assigned this Nov 26, 2024
@fkdl0048 fkdl0048 added this to Todo Nov 26, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Nov 26, 2024
@fkdl0048 fkdl0048 added this to the Programmers milestone Nov 26, 2024
@fkdl0048 fkdl0048 moved this from Todo to In Progress in Todo Nov 29, 2024
@github-project-automation github-project-automation bot moved this from In Progress to Done in Todo Nov 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

No branches or pull requests

1 participant