Problem Solving/BOJ [백준 17202번] [동적 계획법] 핸드폰 번호 궁합 - 728x90 반응형 Approach https://viyoung.tistory.com/292 와 완전히 유사하다. [백준 15312번] [동적 계획법] 이름 궁합 Approach 한 글자가 숫자에 하다씩 매핑되는 양상이므로 replace 등의 함수를 활용하는 것이 아니라, ASCII를 활용하여 대문자와 주어진 숫자를 하나씩 매핑해주는 방식을 사용해주면 된다. 추가적으 viyoung.tistory.com Code #include <bits/stdc++.h> #define fastio ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0) using namespace std; int main(void){ fastio; string a, b; cin >> a >> b; queue<int> q; for(int i = 0; i < 8; i++){ q.push(a[i] - '0'); q.push(b[i] - '0'); } int recur = 15; while(q.size() != 2){ for(int i = 0; i < recur; i++){ int t = q.front(); q.pop(); q.push((t + q.front()) % 10); } q.pop(); recur--; } cout << q.front() << q.back() << "\n"; return 0; } 반응형 공유하기 게시글 관리 비룡의 컴퓨터이야기 Contents 당신이 좋아할만한 콘텐츠 [백준 15489번] [동적 계획법] 파스칼 삼각형 2021.11.14 [백준 14916번] [동적 계획법] 거스름돈 2021.11.14 [백준 12659번] [동적 계획법] Welcome to Code Jam 2021.11.14 [백준 12181번] [동적 계획법] Googlander (Large) 2021.11.11 댓글 0 + 이전 댓글 더보기