일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 운영체제
- 언리얼 엔진
- DP
- 메카님
- sampling theory
- stride
- gas
- frequency-domain spectrum analysis
- dirty cow
- Unreal Engine
- ability task
- CTF
- gameplay effect
- Race condition
- ret2libc
- linear difference equation
- 언리얼엔진
- 유스케이스
- dtft
- 게임 개발
- gameplay ability
- MAC
- Security
- pdlc
- MLFQ
- 유니티
- DSP
- reverse gravity
- 게임개발
- Rr
- Today
- Total
목록2024/11/01 (2)
다양한 기록
https://www.acmicpc.net/problem/11404#include using namespace std;int main(int argc, const char * argv[]) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, m; cin >> n >> m; // init int arr[n][n]; for (int i = 0; i > row >> col >> weight; if( arr[row - 1][col - 1] weight ){ arr[row - 1][col - 1] = weight; } }..
최대 냅색https://www.acmicpc.net/problem/12865#include #include #include using namespace std;struct Node { int weight; int value;};int main(int argc, const char * argv[]) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, k; cin >> n >> k; vector > dp(n + 1, vector(k + 1, 0)); vector sack(n + 1); for (int i = 1; i > sack[i].weight; ..