티스토리 뷰
SWEA::1244::최대 상금
출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15Khn6AN0CFAYD
#include <stdio.h>
#include <algorithm>
#include <string>
using namespace std;
int N, K, ans;
char tmp[256];
string s;
void cal(int cnt, int now) {
if (cnt == K) {
ans = max(ans, stoi(s));
return;
}
for (int i = now; i < s.size(); i++) {
for (int j = i; j < s.size(); j++) {
if (i == j)continue;
if (s[i] <= s[j]) {
swap(s[i], s[j]);
cal(cnt + 1, i);
swap(s[i], s[j]);
}
}
}
}
int main() {
int T; scanf("%d", &T);
for (int tc = 1; tc <= T; tc++) {
scanf("%s", tmp); scanf("%d", &K); ans = 0; s = tmp;
cal(0, 0);
printf("#%d %d\n", tc, ans);
}
return 0;
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA 2382] 미생물 격리 (0) | 2018.08.16 |
---|---|
[SWEA 2383] 점심 식사시간 (2) | 2018.08.16 |
[SWEA 1224] 계산기3 (0) | 2018.08.10 |
[SWEA 1223] 계산기2 (0) | 2018.08.10 |
[SWEA 1222] 계산기1 (0) | 2018.08.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 2018 KAKAO BLIND RECRUITMENT
- 17779
- 시간 복잡도
- 2018 카카오 블라인드 채용
- boj
- SW Expert Academy
- 17142
- 미세먼지 안녕!
- 17140
- 게리맨더링 2
- 알고리즘
- SWEA
- scanf
- 이차원 배열과 연산
- 입출력
- 새로운 게임 2
- DP
- hackerrank
- 17143
- 트렌드
- 삼성
- 팁
- 연구소 3
- DFS
- string
- 백준
- STL
- 17837
- 역량 테스트
- 17144
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함