일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 탐색
- 이진 탐색
- format 메서드
- 트리
- 자기개발
- 스택
- 배열
- 그래프
- IT
- 기초
- 정렬
- 자료구조
- 유닉스
- UNIX
- 동적 계획
- 분할 정복
- 순차 탐색
- 재귀 함수
- 그리디
- git hub
- 문법
- type 함수
- 우분투
- 백준
- Git
- MiniHeap
- 알고리즘
- NQueen
- 파이썬
- sys.stdin.readline()
Archives
- Today
- Total
코딩고치
[백준][수학]Base Conversion 본문
A진법의 수를 B진법의 수로 바꾸는 문제. 먼저 A진법의 수를 10진수로 나타낸 후 다시 B진법의 수로 바꾸면 된다.
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
|
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(void)
{
int a, b;
cin >> a >> b; //진법 a,b
int m;
cin >> m; //a진법 수의 자릿수
int x = 1;
int num = 0; //10진수로 나타낸 수
vector<int> av(m); // a진법 수
vector<int> bv; //b진법
for (int i = 0; i < m; i++)
{
cin >> av[i];
}
for (int i = m - 1; i >= 0; i--)
{
num += av[i] * x;
x *= a;
}
while (1)
{
if (num == 0)
break;
else
{
bv.push_back(num % b);
num = num / b;
}
}
reverse(bv.begin(), bv.end());
for (int i = 0; i < bv.size(); i++)
{
cout << bv[i] << " ";
}
cout << '\n';
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'백준 알고리즘 기초 > 수학' 카테고리의 다른 글
[백준][수학] 소인수분해 (0) | 2019.09.14 |
---|---|
[백준][수학]진법 변환 (0) | 2019.09.14 |
[백준][수학]진법 변환2 (0) | 2019.09.14 |
[백준][수학]골드바흐의 파티션 (0) | 2019.09.13 |
[백준][수학]-2진법 (0) | 2019.09.13 |
Comments