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
- centos pyhon 설치
- python popen
- 1697
- linux시간으로 변경
- semanage
- c3 축 가리기
- grafana dashboard
- gcc 업데이트
- snmp
- influxdb 설치
- selinux port 등록
- InfluxDB
- telegraf
- c3 second
- c3 초
- c3 step graph
- 정규식 활용
- regex_search
- 정규식 컴파일
- CentOS7
- 백준
- subporcess path
- gcc regex
- python subprocess
- c3 축 없애기
- g++ 업데이트
- snmp test
- c++ 정규식
- python os
- 정규식 문자열 출력
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