I hereby claim:
- I am Mjkim-Programming on github.
- I am gaeguldev (https://keybase.io/gaeguldev) on keybase.
- I have a public key whose fingerprint is BCFE A0FF 1731 6084 2D9C 8AE1 8443 CB0F 3024 13FD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <bits/stdc++.h> | |
| using namespace std; | |
| // [COPY START] | |
| struct Point { | |
| long long x, y; | |
| }; | |
| enum Orientation { CW = -1, COLLINEAR = 0, CCW = 1 }; |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| // [Copy Start] | |
| struct Point { | |
| long long x, y; | |
| }; | |
| enum Orientation { CW = -1, COLLINEAR = 0, CCW = 1 }; |
| from enum import Enum | |
| class Operation(Enum): | |
| EXIT = 0 | |
| ADD = 1 | |
| SUBTRACT = 2 | |
| MULTIPLY = 3 | |
| DIVIDE = 4 | |
| REMAINDER = 5 | |
| QUOTIENT = 6 |
| #include <bits/stdc++.h> | |
| #define ll long long | |
| #define FASTIO \ | |
| cin.tie(NULL); \ | |
| ios::sync_with_stdio(false); | |
| #define END return 0; | |
| #define out cout << | |
| #define in cin >> | |
| using namespace std; |
| #include <bits/stdc++.h> | |
| #define ll long long | |
| #define FASTIO \ | |
| cin.tie(NULL); \ | |
| ios::sync_with_stdio(false); | |
| #define END return 0; | |
| #define out cout << | |
| #define in cin >> | |
| using namespace std; |
| #include <bits/stdc++.h> | |
| #define ll long long | |
| #define FASTIO \ | |
| cin.tie(NULL); \ | |
| ios::sync_with_stdio(false); | |
| #define END return 0; | |
| #define out cout << | |
| #define in cin >> | |
| using namespace std; |
| #include <bits/stdc++.h> | |
| #define ll long long | |
| #define FASTIO \ | |
| cin.tie(NULL); \ | |
| ios::sync_with_stdio(false); | |
| #define END return 0; | |
| #define out cout << | |
| #define in cin >> | |
| using namespace std; |
| double area(vector<int>& x, vector<int>& y) { | |
| int N = x.size(); | |
| ll mulx = 0LL; ll muly = 0LL; | |
| for(int i = 0; i < N; i++) { | |
| mulx += (ll)x[i] * y[(i+1) % N]; | |
| } | |
| for(int i = 0; i < N; i++) { | |
| muly += (ll)x[(i+1) % N] * y[i]; | |
| } | |
| return 0.5 * llabs(mulx - muly); |
| #include <bits/stdc++.h> | |
| #define ll long long | |
| #define FASTIO \ | |
| cin.tie(NULL); \ | |
| ios::sync_with_stdio(false); | |
| #define END return 0; | |
| #define out cout << | |
| #define in cin >> | |
| #define i128 __int128 | |
| using namespace std; |