티스토리 뷰

알고리즘/SWEA

[SWEA 1244] 최대 상금

히더 2018. 8. 13. 15:27

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
링크
«   2024/11   »
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
글 보관함