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 | 31 |
Tags
- 직무면접
- 알고리즘 문제
- 백준
- 코테 대비
- 쉬운 알고리즘 문제
- 원서읽기
- 원서
- 코테
- swexpertacademy
- sw expert
- SQL
- English
- BFS
- PyQt
- englishbook
- D4
- sw expert academy
- readingbook
- 프로그래머스
- STUDYENGLISH
- dfs
- nightroutine
- 알고리즘
- 삼성
- 코딩테스트
- 원서읽자
- 완전탐색
- MySQL
- the midnight library
- 코테 준비
Archives
- Today
- Total
목록뱀 (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