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
- 북리뷰
- 정석
- 백준
- 브루트포스
- 오퍼레이팅시스템
- 구현
- vector
- 그래프
- Computer science
- 컴공과
- c++
- 컴공
- DP
- coding
- 컴퓨터공학과
- bfs
- Operating System
- Stack
- 알고리즘
- 자료구조
- 개발
- 정석학술정보관
- 코테
- cs
- OS
- 코딩
- 문제풀이
- 오에스
- 너비우선탐색
- 스택
Archives
- Today
- Total
목록dynamicprogramming (3)
Little Jay
[C++] 백준 11049번 - 행렬 곱셈 순서
이차원 배열을 사용해야하는 dp문제 #include #define endl '\n' using namespace std; int n, a, b; int minMul[501][501]; vector v; int matOrder(vector& v, int n) { for (int i = 1; i > a >> b; if (i == n - 1) { v.push_back(a); v.push_back(b); } else { v.push_back(a); } } cout
알고리즘/BOJ
2022. 7. 1. 16:51
[C++] 백준 1010 - 다리놓기
간단한 파스칼 삼각형 구하는 문제 #include #include using namespace std; int bridges[31][31]; int main() { ios::sync_with_stdio(false); cin.tie(NULL); for (int i = 1; i t; while (t--) { int n, m; cin >> n >> m; cout
알고리즘/BOJ
2021. 9. 20. 17:43