250x250
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
- 백준#boj#16932#모양만들기
- 백준#BOJ#8012#한동이는영업사원
- 백준#BOJ#14501#퇴사#브루트포스
- 백준#BOJ#2615#오목
- 백준#boj#12755
- 백준#BOJ#12865#평범한배낭
- 백준#BOJ#1939#중량제한
Archives
- Today
- Total
순간을 성실히, 화려함보단 꾸준함을
[ boj : 21275 ] 폰 호석만 본문
https://www.acmicpc.net/problem/21275
문제 : 각 해당하는 진법으로 바꾸었을 때 동일한 값을 찾아라
해설 : 아우 ㅡㅡ....난 이래서 문제... 주어진 문자열에서 최대값을 10진법으로 전환했을 때 k 라면 최소 k+1 진법부터 시작해야됩니다...(전 k진법으로 생각해서 자꾸 틀 ㅠ)
위에만 생각하고 있으면 전부 하나씩 전환해보면 됩니다.
#include<bits/stdc++.h>
using namespace std;
using ull = unsigned long long;
const ull limit = (ull)1 << 63;
void convert(string x, string y);
ull f(string s, ull x);
struct info {
ull a;
int b, c;
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
string a, b;
cin >> a >> b;
convert(a, b);
return 0;
}
void convert(string x, string y)
{
int mx = -1, my = -1;
ull ret = 0;
reverse(x.begin(), x.end());
reverse(y.begin(), y.end());
for (int i = 0; i < x.length(); i++)
{
if ('0' <= x[i] && x[i] <= '9')
mx = max(mx, x[i] - '0');
else
mx = max(mx, x[i] - 'a' + 10);
}
for (int i = 0; i < y.length(); i++)
{
if ('0' <= y[i] && y[i] <= '9')
my = max(my, y[i] - '0');
else
my = max(my, y[i] - 'a' + 10);
}
vector<info> v;
for (int i = mx+1; i <= 36; i++)
{
for (int j = my+1; j <= 36; j++)
{
if (i == j)continue;
ull tx = f(x, i);
ull ty = f(y, j);
//if (tx == ty)cout << tx << " " << ty;
if (tx < limit && ty < limit && tx == ty)
v.push_back({ tx,i,j });
}
}
if (v.empty())cout << "Impossible";
else if (v.size() >= 2) cout << "Multiple";
else cout << v[0].a << " " << v[0].b << " " << v[0].c;
}
ull f(string s, ull x)
{
ull ret = 0;
for (int i = 0; i < s.length(); i++)
{
ull plus = 0;
if ('0' <= s[i] && s[i] <= '9')
plus = (ull)(s[i] - '0');
else
plus = (ull)(s[i] - 'a' + 10);
ret += (plus * (ull)pow(x, i));
}
return ret;
}
'알고리즘,SQL > 백준,BOJ' 카테고리의 다른 글
[ boj : 21277 ] 짠돌이 호석 (0) | 2021.07.25 |
---|---|
[ boj : 21276 ] 계보 복원가 호석 (0) | 2021.07.18 |
[ boj : 21738 ] 얼음깨기 펭귄 (0) | 2021.07.17 |
[ boj : 17140 ] 이차원 배열과 연산 (0) | 2021.07.11 |
[ boj : 6416 ] 트리인가? (0) | 2021.07.10 |