반응형
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
- 처우협의
- compose
- upper_bound
- softeer
- 소프티어
- 연결요소
- 성적평가
- msSQL
- 경력
- OFFSET
- dfs
- 백준
- incr
- 처우산정
- 퇴사통보
- 오퍼레터
- 13908
- BFS
- @P0
- boj #19237 #어른 상어
- 매개변수탐색
- Docker
- 이분탐색
- 기술면접
- 6987
- 물채우기
- 파라메트릭
- 백트래킹
- BOJ
- Kafka
Archives
- Today
- Total
기술 블로그
원주율 외우기(PI) 본문
728x90
반응형
https://algospot.com/judge/problem/read/PI
생각보다 그렇게 어렵지는 않은 내용인 것 같다.
책의 classify 함수를 보고, 놀랐다.
저렇게도 구현을 할 수 있구나..
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; #define INF 987654321 int cache[10002] = { 0, }; string s; // 시작 부분과 끝 부분의 문자열에 대한 난이도 판단 int classify(int Start, int End) { string part = s.substr(Start, End - Start + 1); // 난이도 1 = 모든 숫자가 같을 때 if (part == string(part.size(), part[0])) return 1; // 난이도 5 = 숫자가 등차 수열을 이룰 때 bool progressive = true; for (int i = 0; i < part.size() - 1; i++) { if (part[i + 1] - part[i] != part[1] - part[0]) { progressive = false; break; } } // 난이도 2 = 숫자가 1씩 단조 증가하거나 단조 감소할 때, 등차수열 1, -1 if (progressive && abs(part[1] - part[0]) == 1) return 2; // 난이도 4 = 2개의 숫자가 번갈아 가며 출현할 때 bool onlytwo = true; for (int i = 0; i < part.size(); i++) { if (part[i] != part[i % 2]) { onlytwo = false; break; } } // 난이도 4 if (onlytwo) return 4; // 난이고 5 if (progressive) return 5; // 난이도 10 return 10; } int memorize(int Begin) { // 기저 사례 : 수열의 끝에 도달했을 경우 if (Begin == s.length()) return 0; int & ret = cache[Begin]; if (ret != INF) return ret; for (int L = 3; L <= 5; L++) { if (Begin + L > s.length()) continue; ret = min(ret, memorize(Begin + L) + classify(Begin, Begin + L - 1)); } return ret; } int main(void) { int T = 0; scanf("%d", &T); while (T--) { fill(cache, cache + 10002, INF); cin >> s; printf("%d\n", memorize(0)); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > AlgoSpot' 카테고리의 다른 글
폴리오미노(POLY) (0) | 2019.01.20 |
---|---|
가장 긴 증가하는 부분 수열(LIS) (0) | 2019.01.14 |
삼각형 위의 최대 경로(TRIANGLEPATH) (0) | 2019.01.11 |
Wildcard(Wildcard) (0) | 2019.01.10 |
외발 뛰기(JUMPGAME) (0) | 2019.01.09 |