일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 주차넉넉
- 사진에서 글자추출
- 커피쏟음
- 검색완료
- 중학교입학수학문제
- 싱가폴중학교수학문제
- 양양솔비치세프스키친
- 양양솔비치조식
- 결항
- 아이혼자다녀옴
- 커피
- 영통역소고기
- 영통외식
- 가족소고기외식
- 사진문자추출하기
- 푸르지오포레피스
- 고마워다음
- 결항전문
- 홍시스무디
- 종이캐리어
- 영통칠프로칠백식당
- 양양솔비치 뷔페
- 편도수술
- 에어아시아
- 파이썬
- 오트눈썰매장
- 양양솔비치아침
- 사진문자추출
- 당근마켓중고차
- DFS
- Today
- Total
목록분류 전체보기 (413)
너와나의 관심사
Backjoon 1654번 while 문으로 시작하는.. binary Search 가 메인 접근 방법 #include #define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:4996) #define LLONG_MAX 9223372036854775807//#define LLONG_MAX 1000001 int main(void){ int N, K; long long input[10001] = {0, };long long max = 0; freopen("input.txt", "r", stdin); scanf("%d %d", &K, &N); for (int i = 0; i < K; i++)scanf("%lld", &input[i]); long long left = 0;..
제한된 quick sort for (int i = 0; i < N; ++i){ scanf("%d", &g); data[g]++; }
#include #pragma warning(disable : 4996) void init(){ for (int i = 0; i = 0 && temp[y][x - 1] > n) check(x - 1, y, n); if (x+1 n) check(x + 1, y, n); if (y -1 >= 0 && temp[y-1][x] > n) check(x, y -1, n); if (y +1 n) check(x, y + 1, n); return 1; } int..
DFS or 재귀 함수에서 stack memory 설정이 보통 1MB 로 ... window 팝업창 에러 발생시 대처방법급하게 알아보느라 .. 죄송합니다..원작자님 Visual Studio -> project 속성 -> 링커 -> Stack reserve size => 10485760 이 값으로 변경 (10 Mbyte)
void insert(int root, int key) { if (root key && leftC[root] == 0) { //no child leftC[root] = key; return; } //right fill s if (root key && leftC[root] != 0) { //왼쪽 자식이 비어있을때 insert(leftC[root], key); } } //해당하는 노드의 자식수..
#pragma warning(disable : 4996)
#define _CRT_SECURE_NO_WARNINGS#include#include #define MAX_ARR_SIZE 100010int N;int res,a;int rear, front; int childCount[MAX_ARR_SIZE];int childIdx[MAX_ARR_SIZE];int* childs[MAX_ARR_SIZE];int pool[MAX_ARR_SIZE];int parent[MAX_ARR_SIZE];int level[MAX_ARR_SIZE];int pos[MAX_ARR_SIZE];long long dist[MAX_ARR_SIZE];int queue[MAX_ARR_SIZE];void initqueue(){ rear=front=0;}void pushqueue(int n){ queue[..