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
- subporcess path
- c3 축 없애기
- selinux port 등록
- centos pyhon 설치
- g++ 업데이트
- c3 step graph
- snmp test
- linux시간으로 변경
- telegraf
- grafana dashboard
- 1697
- python subprocess
- 정규식 문자열 출력
- 백준
- python os
- snmp
- c3 second
- c++ 정규식
- influxdb 설치
- c3 축 가리기
- gcc regex
- gcc 업데이트
- 정규식 컴파일
- semanage
- CentOS7
- InfluxDB
- python popen
- 정규식 활용
- regex_search
- c3 초
Archives
- Today
- Total
목록숨바꼭질 (1)
리셋 되지 말자
[백준 1697] 숨바꼭질
#include #include using namespace std; queue Q; int *arr; int loc= -1; int start, target; void BFS(void) { loc = Q.front(); Q.pop(); if (loc == target) return; if (loc > 0) { if (arr[loc - 1] == 0) { arr[loc - 1] = arr[loc] + 1; Q.push(loc - 1); } } if (loc < 100000) { if (arr[loc + 1] == 0) { arr[loc + 1] = arr[loc] + 1; Q.push(loc + 1); } } if (2 * loc < 100001) { if (arr[2 * loc] == 0) { arr[..
알고리즘
2020. 3. 11. 16:08