250x250
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
- 알고리즘개념
- 완탐
- 백준2251
- 중복순열
- 알고리즘
- 순열
- 에라토스테네스의채
- 코테준비
- 재귀함수
- 정올 1620
- 백준15652
- N과M
- 코테
- 23288
- 주사위굴리기2
- 정보처리기사
- 중복조합
- 볼륨 만들기
- java
- 전화번호속의암호
- 자바
- D드라이브생성
- BFS
- 완전탐색
- 파티션 크기 조정
- 자바 코테
- 삼성역테
- 백준13458
- 백준
- Bfs와DFS
Archives
- Today
- Total
목록알고리즘문제해결전략 (1)
뚱땅뚱땅
[알고리즘] 알고스팟 PICNIC 문제
알고리즘을 통한 문제 해결전략 6과 - 재귀 함수 이용 - 중복으로 세는 경우, 사전순으로 하여 답 하나만 세도록 한다. #include #include using namespace std; int n; // the number of students bool areFriends[10][10] = { false, }; int countPairings(bool taken[10]); int main() { int testcase; int pair; int f1, f2; vector answer; cin >> testcase; for (int i = 0; i < testcase; i++) { //areFriends false로 다시 초기화 for (int m = 0; m < 10; m++) { for (int ..
아카이브
2020. 3. 27. 16:14