[[TableOfContents]] = 오늘의 문제 = * [https://www.acmicpc.net/problem/11657|타임머신] * [https://www.acmicpc.net/problem/111057|오르막 수] = 참가자 = * 15이원준 = 코드 = == 15이원준 == {{{ #include #include #include using namespace std; int d[501] = {0,}; int check[501] = {0,}; vector > > vec; int main(){ vec.resize(501); int n,m; cin>>n>>m; for(int i=0; ifirst] || d[it->first] > d[j] + it->second){ update = true; check[it->first] = 1; d[it->first] = d[j] + it->second; } } } } for(int i = 2; i<=n; i++){ if(!check[i]){ cout<<-1<