Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- UnrealEngine4
- UnrealEngine5
- Frustum
- 티스토리챌린지
- 오블완
- 줄 세우기
- const
- 백준
- softeer
- DeferredRendering
- IFileDialog
- Unreal Engine5
- RootMotion
- algorithm
- 팰린드롬 만들기
- C++
- winapi
- baekjoon
- GeeksForGeeks
- Programmers
- 1563
- RVO
- 프로그래머스
- directx
- DirectX11
- 언리얼엔진5
- 2294
- NRVO
- C
- UE5
Archives
- Today
- Total
목록운동 (1)
Game Develop
[Algorithm]Baekjoon 1956번 : 운동
https://www.acmicpc.net/problem/1956 1956번: 운동 첫째 줄에 V와 E가 빈칸을 사이에 두고 주어진다. (2 ≤ V ≤ 400, 0 ≤ E ≤ V(V-1)) 다음 E개의 줄에는 각각 세 개의 정수 a, b, c가 주어진다. a번 마을에서 b번 마을로 가는 거리가 c인 도로가 있다는 의 www.acmicpc.net 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 int v, e, a, b, c; int arr[401][401] = { 0 }; int main(void) { ios_base:..
Algorithm/Baekjoon
2023. 10. 12. 20:01