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
- PyQt
- 회문
- SWEA
- git 명령어
- 백준
- 해커랭크
- 백준 알고리즘
- tcp stack
- git 입문
- 17609
- pyqt button
- 두 문자열
- 하이퍼바이저
- 커널 패킷 처리
- git
- pyqt tooltip
- 도커
- 3D Surface Area
- pyqt menu bar
- 혁진이의 프로그램 검증
- Python
- Two Characters
- Queen's Attack
- pyqt status bar
- Queen's Attack II
- 프로그래밍 문제
- pyqt layout
- 리눅스 커널
- 네트워크 스택
- hackerrank
Archives
- Today
- Total
목록혁진이의 프로그램 검증 (1)
뜸부기와 공작새
[SWEA] 1824 혁진이의 프로그래밍 검증
#include #include #include using namespace std; typedef struct { int r; int c; char size; } map_t; int R, C; int path[21][21][16][4]; int dr[] = { 0, 1, 0, -1 }; int dc[] = { 1, 0, -1, 0 }; map_t map[21][21]; vector v; vector atv; int dfs(int posr, int posc, int mem, int dir, int depth) { if (posr >= R) posr = 0; else if (posr = C) posc = 0; else if (posc < 0) posc =..
카테고리 없음
2020. 5. 21. 21:13