최근 포스트

gbs install error in ubuntu 18.04

최대 1 분 소요

After update 18.04, I cannot install gbs package. In this case, I solved using below metho.d /etc/apt/sources.list.d$ cat tizen.list deb [trusted=yes] htt...

Putty + Xming 사용 개발 환경

최대 1 분 소요

mobaXterm을 집에서 쓰기는 하는데 회사에서 쓰기에는 라이센스 이슈가 있어서 그냥 putty + Xming을 깔아서 windows PC 에서 사용합니다. terminal 을 terminator를 사용하면 좋네요 ^^; Putty and Xming setting guide...

linked list using array.

2 분 소요

//I will make a linked list. //init linked_list //add node //remove node using data //remove node using idx #include #include “memory.h” #define MAX_...

linked list using array

최대 1 분 소요

#include struct Node{ int to, cost; Node *next; } int nidx; Node nodes[1000001]; #define DIV 200; struct Node{ int data; int next; } int Head[...

ACMICPC 6549

1 분 소요

/* 입력은 테스트 케이스 여러 개로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있고, 직사각형의 수 n이 가장 처음으로 주어진다. (1 ≤ n ≤ 100,000) 그 다음 n개의 정수 h1, …, hn (0 ≤ hi ≤ 1000000000)가 주어진다. 이 숫자들...