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
- dfs
- D4
- the midnight library
- 프로그래머스
- SQL
- nightroutine
- 원서
- 완전탐색
- BFS
- English
- 알고리즘 문제
- englishbook
- 코테 대비
- 코테
- STUDYENGLISH
- MySQL
- 코테 준비
- PyQt
- sw expert
- 코딩테스트
- 쉬운 알고리즘 문제
- swexpertacademy
- 직무면접
- readingbook
- sw expert academy
- 원서읽기
- 삼성
- 원서읽자
- 백준
- 알고리즘
Archives
- Today
- Total
목록3190 (1)
시나브로
3190. 뱀
#include #include using namespace std; typedef struct y { int i; int j; }; int map[110][110] = { 0 }; int list[110][2]; int head[2] = {1,1}; int tail[2] = {1,1}; int d = 1; int dx[] = { -1,0,1,0 }; int dy[] = { 0,1,0,-1 }; int main() { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int n = 0; cin >> n; int apple; cin >> apple; for (int i = 0; i > ..
알고리즘/백준
2020. 10. 14. 23:54