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
- Smilegate
- 서버개발캠프
- Union-find
- 알고리즘
- 스마일게이트
- 식단
- BFS
- 코테
- 투포인터
- 보석쇼핑
- LIS #Algorithm #요소추적
- 중반부
- BaekJoon
- 카카오인턴
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 1편
- 삼성 #코테 #2020상반기 #c++
- 유니온파인드
- 카카오
- Algorithm
- 코딩테스트
- 백준
- c++
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
2019 카카오 개발자 겨울 인턴십 : 튜플(c++) / 구현 본문
반응형
각각의 원소의 개수가 가장 많은 것이 첫 번째 수, 그다음 많은 것이 두 번째 수.....
이러한 규칙이 생기는 것을 알 수 있었다.
ex) "{{1,2,3},{2,1},{1,2,4,3},{2}}" => 2(4번), 1(3번), 3(2번), 4(1번) => (2, 1, 3, 4) 형태의 튜플 완성
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include <string>
#include <vector>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
map<int, int> m;
vector<int> kind;
vector<int> solution(string s) {
vector<int> answer;
string temp = "";
for(int i=0; i<s.size(); i++){
if(s[i]=='{' || s[i]=='}') continue;
if(s[i]==','){
if(m.count(stoi(temp))==0){
kind.push_back(stoi(temp));
m[stoi(temp)] = 1;
}else{
m[stoi(temp)]++;
}
temp = "";
continue;
}
temp += s[i];
}
if(m.count(stoi(temp))==0){
kind.push_back(stoi(temp));
m[stoi(temp)] = 1;
}else{
m[stoi(temp)]++;
}
vector<pair<int, int>> v;
for(int i=0; i<kind.size(); i++){
v.push_back(make_pair(m[kind[i]], kind[i]));
}
sort(v.begin(), v.end());
for(int i=v.size()-1; i>=0; i--){
answer.push_back(v[i].second);
}
return answer;
}
|
cs |
반응형
'Algorithm > 카카오 기출' 카테고리의 다른 글
2021 KAKAO BLIND RECRUITMENT : 카드 짝 맞추기 / 백트래킹+다익스트라 (0) | 2021.03.19 |
---|---|
2021 KAKAO BLIND RECRUITMENT : 광고 삽입 (c++) / String (0) | 2021.03.15 |
2018 KAKAO BLIND RECRUITMENT : 프렌즈4 블록(c++) / 구현 (0) | 2021.03.10 |
2020 KAKAO BLIND RECRUITMENT : 기둥과 보(c++) / 구현 (0) | 2021.03.10 |
2018 KAKAO BLIND RECRUITMENT : 캐시(c++) (0) | 2021.03.09 |
Comments