일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- convolution
- polymorphism
- link layer
- Security
- stride
- dirty cow
- 운영체제
- pdlc
- STCF
- 메카님
- 유니티
- 게임 개발
- ret2libc
- DP
- 유스케이스
- MLFQ
- 배경 그림
- Race condition
- RBAC
- Frequency Response
- linear difference equation
- Unity #Indie Game
- 게임개발
- DSP
- AINCAA
- dtft
- SNR
- sampling theory
- MAC
- frequency-domain spectrum analysis
- 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; ..