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