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 |
Tags
- springboot
- Unity Editor
- Packet Network
- Spring Boot
- spread 연산자
- react
- unity
- draganddrop
- screencapture
- mongoDB
- nodejs
- critical rendering path
- server
- Unity IAP
- MySQL
- linux
- rpg server
- express
- Camera Movement
- SDK upgrade
- OverTheWire
- Google Refund
- css framework
- Camera Zoom
- Google Developer API
- Digital Ocean
- Git
- --watch
- docker
- java
Archives
- Today
- Total
우당탕탕 개발일지
[프로그래머스] Level 2. 혼자 놀기의 달인 본문
https://school.programmers.co.kr/learn/courses/30/lessons/131130
프로그래머스
SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
- 모든 카드를 돌면서 상자번호를 매긴다.
- 만약 상자번호가 이미 0이 아니라면 할당이 끝난것이므로 break
- 상자번호 갱신이 가능하다면 갱신한뒤 index를 다음검사 인덱스로 설정한다.
- 이 작업을 완료했을 때, counts 배열의 개수는 총 박스의 수가 되고, counts[i] 의 요소는 i+1번 상자그룹의 개수가 된다.
- 만약 counts배열의 개수가 1이라면, 상자가 1개밖에 나오지 않았다는 의미이므로 0을 리턴한다.
- counts 배열 안에서 가장 큰 두 수를 곱해서 리턴한다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> cards) {
int answer = 0;
vector<int> groups(cards.size(), 0);
vector<int> counts;
int num = 1;
for(int i=0; i<cards.size(); i++){
int index = i;
bool flag = false;
while(groups[index]==0){
flag = true;
groups[index] = num;
if(counts.size() < num) counts.push_back(0);
counts[num-1] ++;
index = cards[index]-1;
}
if(flag) num++;
}
if(counts.size() <=1) return 0;
sort(counts.rbegin(), counts.rend());
return counts[0]*counts[1];
}
'Algorithm(c++) > Level 2' 카테고리의 다른 글
[프로그래머스] Level 2. 지게차와 크레인 (0) | 2025.03.22 |
---|---|
[프로그래머스] Level 2. 숫자 블록 (0) | 2025.03.20 |
[프로그래머스] Level 2 . 이모티콘 할인행사 (0) | 2025.03.18 |
[프로그래머스] Level 2. 후보키 (1) | 2025.03.15 |
[프로그래머스] Level 2. 거리두기 확인하기 (0) | 2025.03.07 |