https://programmers.co.kr/learn/courses/30/lessons/92341
[난이도] level2
[유형] 구현
[풀이]
주어진 조건에 맞게 잘 구현하는 문제입니다.
특별한 알고리즘은 없습니다..
#include <string>
#include <vector>
#include <map>
#include <cstring>
#include <cmath>
#include <cstdio>
using namespace std;
int t[10000];
vector<int> fees;
map<int,int> pay;
vector<string> split(string s){
vector<string> ret;
int idx;
s+=' ';
while((idx = s.find(' '))!=string::npos){
ret.push_back(s.substr(0,idx));
printf("%s ",s.substr(0,idx).c_str());
s = s.substr(idx+1);
}
return ret;
}
vector<int> solution(vector<int> _fees, vector<string> records) {
vector<int> answer;
fees=_fees;
memset(t,-1,sizeof(t));
for(auto r : records){
auto ret = split(r);
int h,m,num=stoi(ret[1]);
sscanf(ret[0].c_str(),"%d:%d",&h,&m);
m+=h*60;
if(t[num]==-1) {
t[num]=m;
}else{
pay[num]+=m-t[num];
t[num]=-1;
}
}
for(int i=0;i<10000;i++){
if(t[i]!=-1) pay[i]+=23*60+59-t[i];
}
for(auto [k,v] : pay){
int total = fees[1];
if(v>fees[0]) total+=ceil((double)(v-fees[0])/fees[2])*fees[3];
answer.push_back(total);
}
return answer;
}
https://github.com/has2/Problem-Solving/blob/master/programmers/level2/주차_요금_계산.cpp
'Problem-Solving > Programmers' 카테고리의 다른 글
[프로그래머스][level3] 파괴되지 않은 건물 (C++) (0) | 2022.05.29 |
---|---|
[프로그래머스][level3] 양과 늑대 (C++) (0) | 2022.05.29 |
[프로그래머스][level2] k진수에서 소수 개수 구하기 (C++) (0) | 2022.05.29 |
[프로그래머스][level2] 양궁대회 (C++) (0) | 2022.05.29 |
[프로그래머스][level2] n^2 배열 자르기 (C++) (0) | 2022.01.11 |