일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Security
- sampling theory
- TSet
- ret2libc
- 게임 개발
- STCF
- Double free
- CTF
- 배경 그림
- stride
- pdlc
- RBAC
- dirty cow
- DSP
- MLFQ
- frequency-domain spectrum analysis
- Unity #Indie Game
- dtft
- 운영체제
- 유니티
- Race condition
- DP
- 게임개발
- 메카님
- 언리얼엔진
- MAC
- 유스케이스
- AINCAA
- Rr
- linear difference equation
Archives
- Today
- Total
목록Floyd-Warshall (1)
다양한 기록
[DP] 플로이드 워셜 최단거리
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; } }..
알고리즘
2024. 11. 1. 01:40