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