일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 우선 순위 큐
- 문자열
- object detection
- DP
- 플로이드 와샬
- 크루스칼
- lazy propagation
- dropout
- c++
- BFS
- 백트래킹
- 다익스트라
- 2023
- Overfitting
- 알고리즘
- back propagation
- 회고록
- 조합론
- 가끔은_말로
- NEXT
- dfs
- pytorch
- 자바스크립트
- tensorflow
- 분할 정복
- 가끔은 말로
- 세그먼트 트리
- 미래는_현재와_과거로
- 너비 우선 탐색
- 이분 탐색
Archives
- Today
- Total
Doby's Lab
백준 15312번: 이름 궁합 (C++) 본문
https://www.acmicpc.net/problem/15312
Solved By: DP
#include <iostream>
#include <vector>
using namespace std;
int base[26] = {3, 2, 1, 2, 3, 3, 2, 3, 3, 2, 2, 1, 2, 2,
1, 2, 2, 2, 1, 2, 1, 1, 1, 2, 2, 1};
int main(){
string a, b; cin >> a >> b;
vector<vector<int>> cache(a.length() * 2, vector<int>(a.length() * 2));
for(int i = 0; i < a.length(); i++){
cache[0][i * 2] = (base[a[i] - 'A']);
}
for(int i = 0; i < b.length(); i++){
cache[0][i * 2 + 1] = (base[b[i] - 'A']);
}
int temp = a.length() * 2 - 1;
for(int i = 1; i < a.length() * 2; i++){
//cout << i << '\n';
for(int j = 0; j < temp; j++){
cache[i][j] = (cache[i - 1][j] + cache[i - 1][j + 1]) % 10;
//cout << cache[i][j] << ' ';
}
//cout << '\n';
temp--;
}
cout << cache[a.length() * 2 - 2][0];
cout << cache[a.length() * 2 - 2][1];
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
백준 11525번: Farey Sequence Length (C++) (0) | 2022.08.06 |
---|---|
백준 2533번: 사회망 서비스(SNS) (C++) (0) | 2022.08.06 |
백준 19577번: 수학은 재밌어 (C++) (0) | 2022.08.04 |
백준 6588번: 골드바흐의 추측 (C++) (0) | 2022.08.03 |
백준 13926번: gcd(n, k) = 1 (C++) (0) | 2022.08.03 |