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
- c3 step graph
- CentOS7
- python popen
- regex_search
- telegraf
- subporcess path
- InfluxDB
- c3 초
- 정규식 문자열 출력
- c3 축 없애기
- snmp test
- python subprocess
- c++ 정규식
- gcc regex
- 1697
- linux시간으로 변경
- 정규식 활용
- c3 second
- gcc 업데이트
- g++ 업데이트
- 백준
- python os
- influxdb 설치
- semanage
- snmp
- selinux port 등록
- 정규식 컴파일
- grafana dashboard
- centos pyhon 설치
- c3 축 가리기
Archives
- Today
- Total
목록백준 (2)
리셋 되지 말자
[백준 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
[백준 7576]토마토
#include #include #include using namespace std; queue Q; int day = 0; pair D[4] = { {-1, 0}, {0, 1}, {1, 0}, {0, -1} //위, 오른쪽, 아래, 왼쪽 }; int **make_array(int **arr, int col, int row) { arr = new int*[row]; for (int i = 0; i > arr[i][j]; if (arr[i][j] == 1) { Q.push(make_pair(i, j)); //co..
알고리즘
2020. 3. 11. 13:55