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
- SWEA
- PHP 웹페이지 만들기
- 웹페이지 만들기
- Javascript
- 기계학습
- 백준
- 풀이
- 파이썬
- BOJ Python
- lob
- hackerrank
- 드림핵
- CSS
- HTML
- c++
- 숙명여자대학교 정보보안 동아리
- hackctf
- 생활코딩
- 머신러닝
- The Loard of BOF
- 자료구조 복습
- BOJ
- siss
- 숙명여자대학교 정보보안동아리
- Python
- WarGame
- Sookmyung Information Security Study
- c
- C언어
- XSS Game
Archives
- Today
- Total
목록1로 만들기 (1)
혜랑's STORY
[BOJ_C++] 1463번 : 1로 만들기
# 문제 # 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; int d[1000001] = { 0, 0, 1, 1 }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int j = 4; j d[j / 2] + 1) d[j] = d[j / 2] + 1; if (j % 3 == 0 && d[j] > d[j / 3] + 1) d[j] = d[j / 3] + 1; } printf("%d\n", d[n]); return 0; } 1에서 ..
무지성 공부방/알고리즘 해결
2021. 7. 30. 14:10