일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- db
- Redux
- 백준
- Database
- java
- Python
- Javascript
- 동적 계획법
- network
- 알고리즘
- DP
- react
- VIM
- DFS
- TypeScript
- 안드로이드
- Algorithm
- Graph
- 리트코드
- LeetCode
- 그레이들
- 다이나믹 프로그래밍
- frontend
- git
- BFS
- Data Structure
- 프로그래머스
- vscode
- 자바
Archives
- Today
- Total
목록brute force method (1)
늘 겸손하게

brute force method 으로 해결하는 문제 코드 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 #include #include using namespace std; int main(void) { set s; int N , M; cin >> N >> M; int * arr = (int*)malloc( sizeof(int) * N ); for (int i = 0; i > arr[i]; } for (int i = 0; i
코딩 문제/백준
2021. 6. 29. 13:42