This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
출처: NGD | |
0. 직선의 표현과 선분 교차 | |
1. 컨벡스 헐 | |
2. 로테이팅 캘리퍼스 | |
3. 스위핑 (+ 샤모스 호이) | |
4. 볼록다각형 내 점 판별(logN) | |
5. 볼록다각형에 접선 긋기(logN) | |
6. HPI(NlogN) | |
7. 보로노이 & 델로네 삼각분할 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🎉 전역을 축하합니다! | |
🗓 입대일: 2022-11-28 | |
🗓 전역일: 2024-05-26 | |
🚩 100% : ████████████████████████████████████████ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
const double PI = 2.0 * acos(0.0); | |
const double EPSILON = 1e-9; | |
const double INF = 1e200; | |
struct Vector2 { | |
double x; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#define for1(s,n) for(int i = s; i < n; i++) | |
#define for1j(s,n) for(int j = s; j < n; j++) | |
#define foreach(k) for(auto i : k) | |
#define foreachj(k) for(auto j : k) | |
#define pb(a) push_back(a) | |
#define sz(a) a.size() | |
using namespace std; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#define for1(s,n) for(int i = s; i < n; i++) | |
#define for1j(s,n) for(int j = s; j < n; j++) | |
#define foreach(k) for(auto i : k) | |
#define foreachj(k) for(auto j : k) | |
#define pb(a) push_back(a) | |
#define sz(a) a.size() | |
using namespace std; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node: | |
def __init__(self, value, next=None): | |
self.value = value | |
self.next = next | |
class LinkedList: | |
def __init__(self): | |
self.head = None | |
self.count = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⭐ Total Stars: 46 | |
➕ Total Commits: 6,981 | |
🔀 Total PRs: 884 | |
🚩 Total Issues: 537 | |
📦 Contributed to: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ps-start": { | |
"prefix": "ps", | |
"body": [ | |
"#include <bits/stdc++.h>", | |
"", | |
"#define for1(s,n) for(int i = s; i < n; i++)", | |
"#define for1j(s,n) for(int j = s; j < n; j++)", | |
"#define foreach(k) for(auto i : k)", | |
"#define foreachj(k) for(auto j : k)", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#define for1(s,n) for(int i = s; i < n; i++) | |
#define for1j(s,n) for(int j = s; j < n; j++) | |
#define foreach(k) for(auto i : k) | |
#define foreachj(k) for(auto j : k) | |
#define pb(a) push_back(a) | |
#define sz(a) a.size() | |
#define MX_EDGE_CNT 110000 |
NewerOlder