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 |
Tags
- 코테
- 정석
- 알고리즘
- 오퍼레이팅시스템
- cs
- OS
- 너비우선탐색
- vector
- 개발
- Operating System
- 자료구조
- 정석학술정보관
- 컴퓨터공학과
- Stack
- Computer science
- 구현
- coding
- 오에스
- 컴공과
- DP
- 백준
- c++
- 스택
- 그래프
- 브루트포스
- 북리뷰
- bfs
- 문제풀이
- 컴공
- 코딩
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