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 | 31 |
Tags
- Queen's Attack II
- 백준 알고리즘
- 프로그래밍 문제
- PyQt
- 백준
- 3D Surface Area
- 두 문자열
- Two Characters
- pyqt button
- git 입문
- Python
- 해커랭크
- pyqt menu bar
- git
- 하이퍼바이저
- 리눅스 커널
- pyqt layout
- hackerrank
- 커널 패킷 처리
- pyqt tooltip
- pyqt status bar
- SWEA
- 회문
- 네트워크 스택
- 혁진이의 프로그램 검증
- tcp stack
- git 명령어
- 17609
- Queen's Attack
- 도커
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