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
- 트리
- 유니온 파인드
- 우선순위 큐
- Team Fortress 2
- 시뮬레이션
- Unreal Engine 5
- XR Interaction Toolkit
- 스택
- BFS
- 다익스트라
- 수학
- 그래프
- 구현
- VR
- 재귀
- DFS
- 정렬
- 백트래킹
- c++
- 문자열
- 브루트포스
- 투 포인터
- 누적 합
- 그리디 알고리즘
- 유니티
- 백준
- 다이나믹 프로그래밍
- ue5
- 자료구조
- 알고리즘
Archives
- Today
- Total
1일1알
백준 16936번 나3곱2 C++ 본문
https://www.acmicpc.net/problem/16936
3으로 많이 나누어 떨어지고 2로 적게 나누어 떨어지는 순서대로 정렬했다.
이렇게 정렬하면 앞에서부터 3으로 나누다가 2로 곱하는 순서로 수열을 만들 수 있다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
struct Val {
Val() {}
Val(int64 val) {
cnt_3 = 0;
cnt_2 = 0;
this->val = val;
while (true) {
if (val % 3 != 0) break;
val /= 3;
cnt_3++;
}
while (true) {
if (val % 2 != 0) break;
val /= 2;
cnt_2++;
}
}
int64 val;
int cnt_3;
int cnt_2;
bool operator<(const Val& other) {
if (cnt_3 == other.cnt_3) {
return cnt_2 < other.cnt_2;
}
return cnt_3 > other.cnt_3;
}
};
int n;
vector<Val> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<Val>(n);
for (int i = 0; i < n; i++) {
int64 b;
cin >> b;
v[i] = { b };
}
sort(v.begin(), v.end());
for (int i = 0; i < n; i++) {
cout << v[i].val << " ";
}
}
'알고리즘' 카테고리의 다른 글
백준 14494번 다이나믹이 뭐에요? C++ (0) | 2023.02.05 |
---|---|
백준 13901번 로봇 C++ (0) | 2023.02.04 |
백준 13703번 물벼룩의 생존확률 C++ (0) | 2023.02.02 |
백준 11758번 CCW C++ (0) | 2023.02.01 |
백준 24445번 알고리즘 수업 - 너비 우선 탐색 2 C++ (0) | 2023.01.31 |