반응형
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 |
Tags
- 이분탐색
- 13908
- 기술면접
- 연결요소
- 오퍼레터
- upper_bound
- 처우협의
- incr
- 경력
- 매개변수탐색
- softeer
- compose
- 처우산정
- 파라메트릭
- 성적평가
- boj #19237 #어른 상어
- 퇴사통보
- 백준
- OFFSET
- msSQL
- 소프티어
- Kafka
- 6987
- Docker
- dfs
- BOJ
- 물채우기
- BFS
- 백트래킹
- @P0
Archives
- Today
- Total
기술 블로그
2529번 부등호 본문
728x90
반응형
https://www.acmicpc.net/problem/2529
백트래킹 문제이다.
근데 왜 문제 분류는 위상정렬(그래프)인지는 모르겠다.
첫 시작(=before이 -1)은 무조건 실행돼야 하므로,
13번 째 줄에 if조건문을 추가했다.
백트래킹 함수(bt)의 idx는 vc(부등호) 벡터의 인덱스이다.
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 48 49 50 51 52 53 54 | #include <bits/stdc++.h> using namespace std; int K; string s, mins = "", maxs = ""; vector<char> vc; bool use[10]; bool calc; bool chk(int before, int now, char oper) { if (before == -1) return true; if (oper == '>') return before > now; return before < now; } void bt(int idx, int before, string numbers) { if (idx == K) { if(!calc)mins = numbers; else maxs = max(maxs, numbers); calc = true; return; } for (int i = 0; i <= 9; i++) if (!use[i] && chk(before, i, vc[idx])) { use[i] = true; numbers += to_string(i); if(before == -1) bt(idx, i, numbers); else bt(idx + 1, i, numbers); use[i] = false; numbers = numbers.substr(0, numbers.length() - 1); } } int main(void) { cin.tie(0); cin >> K; getchar(); getline(cin, s); for (auto i : s) if (i != ' ') vc.push_back(i); bt(0, -1, ""); cout << maxs << '\n' << mins << '\n'; return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
17609번 회문 (0) | 2019.10.13 |
---|---|
3190번 뱀 (0) | 2019.10.10 |
17505번 링고와 순열 (0) | 2019.09.30 |
17412번 도시 왕복하기 1 (0) | 2019.09.29 |
1092번 배 (0) | 2019.09.28 |