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 |
Tags
- winapi
- Frustum
- TObjectPtr
- Unreal Engine5
- 티스토리챌린지
- algorithm
- IFileDialog
- NRVO
- const
- RVO
- 팰린드롬 만들기
- UnrealEngine5
- DirectX11
- UnrealEngine4
- UE5
- baekjoon
- 줄 세우기
- 오블완
- 프로그래머스
- RootMotion
- 1563
- C
- 백준
- C++
- GeeksForGeeks
- 2294
- 언리얼엔진5
- directx
- softeer
- Programmers
Archives
- Today
- Total
목록1956 (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