Skip to content

Instantly share code, notes, and snippets.

View kozistr's full-sized avatar
🔥
work

Hyeongchan Kim kozistr

🔥
work
View GitHub Profile
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
#define MAX 20000
#define swap(a, b) ((&(a) == &(b))? a : ( a ^= b, b ^=a, a ^= b))
int buf[MAX], tmp[MAX];