https://school.programmers.co.kr/learn/courses/30/lessons/132265
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
set + 단순반복 = 시간초과
map + 조각넘기기방식 적용으로 해결
#include <string>
#include <vector>
#include <map>
using namespace std;
int solution(vector<int> topping) {
int answer = 0;
int tSize = topping.size();
map<int, int> c1, c2; // topping type, count
// 안자른상태
for(int i=0; i<tSize; i++){
map<int,int>::iterator it = c1.find(topping[i]);
if(it != c1.end())
(it->second)++;
else
c1.insert(make_pair(topping[i], 1));
}
// 자른 범위를 한칸씩 늘리면서 공평여부 check
for(int i=tSize-1; i>0; i--){
map<int,int>::iterator it = c1.find(topping[i]);
if(it->second == 1){
c1.erase(topping[i]);
}
else{
(it->second)--;
}
it = c2.find(topping[i]);
if(it != c2.end())
(it->second)++;
else
c2.insert(make_pair(topping[i], 1));
if(c1.size() == c2.size())
answer++;
}
return answer;
}
'알고리즘 > 알고리즘' 카테고리의 다른 글
[C++] 프로그래머스 : 등산코스 정하기 (0) | 2022.11.01 |
---|---|
[C++] 프로그래머스 : 할인 행사 (0) | 2022.10.30 |
[C++] 프로그래머스 : 야간 전술보행 (0) | 2022.10.29 |
[JAVA] 프로그래머스 : 뉴스 클러스터링 (0) | 2022.08.05 |
[JAVA] 프로그래머스 : 행렬 테두리 회전하기 (0) | 2022.08.02 |