일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코딩테스트
- 백준
- 부주상골수술후기
- 카카오코테
- ChatGPT
- SQLD
- 부주상골증후군
- 구현
- BFS
- 부주상골수술
- DFS
- 롯데정보통신
- 부주상골
- IOS
- 분할정복
- c++
- sql
- 프로그래머스
- 카카오인턴십
- 세브란스
- 스택
- SWIFT
- dp
- 독학
- istringstream
- 독일어독학
- 코테
- 카카오인턴
- 독일어
- 리눅스
Archives
- Today
- Total
슈뢰딩거의 고등어
[백준] 16943 숫자재배치 본문
https://www.acmicpc.net/problem/16943
#include <iostream>
#include <vector>
#include <string>
#include <math.h>
using namespace std;
// dfs
// 순열
long long a, b;
long long answer = -1;
bool visit[10];
vector <int> arr;
vector <int> choice;
void dfs(int cnt, int target_no) {
if(cnt == target_no) {
long long ret = 0;
int idx = 0;
for(int i=choice.size()-1; i>=0; i--) {
ret += choice[i]* pow(10,idx);
idx++;
}
if(ret < pow(10, target_no-1))
return;
if(b>ret){
answer = max(ret, answer);
}
return;
}
for(int i=0; i<arr.size(); i++) {
if(visit[i]) continue;
visit[i] = true;
choice.push_back(arr[i]);
dfs(cnt+1, target_no);
visit[i] = false;
choice.pop_back();
}n
}
int main() {
scanf("%lld %lld", &a, &b);
long long tmp_a = a;
long long tmp_b = b;
int length = 0;
while(tmp_a > 0) {
arr.push_back(tmp_a % 10);
tmp_a/= 10;
length++;
}
for(int i=0; i<int(arr.size()); i++) {
if(visit[i]) continue;
visit[i] = true;
choice.push_back(arr[i]);
dfs(1, length);
visit[i] = false;
choice.pop_back();
}
printf("%lld\n",answer);
}
A 의 자리수들을 원소로 하는 순열을 구하여 새로운 수를 만든다.
10 ^ 9 승이므로 long long int 이상의 타입을 사용해주어야한다.!
'알고리즘' 카테고리의 다른 글
[백준] 2422 한윤정이 이탈리아에 가서 아이스크림을 사먹는데 (0) | 2022.01.24 |
---|---|
[백준] 2210 숫자판 점프 (0) | 2022.01.24 |
진수 변환 (0) | 2022.01.20 |
[백준] 16936 나3곱2 (0) | 2022.01.20 |
[백준] 16924 십자가 찾기 (0) | 2022.01.20 |
Comments