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