# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
375321 | astoria | 즐거운 행로 (APIO20_fun) | C++14 | 61 ms | 27748 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "fun.h"
using namespace std;
std::vector<int> createFunTour(int N, int Q) {
pair<int,int> dist[N][N];
for(int i=0; i<N; i++){
for(int j=0; j<N; j++){
dist[i][j] = {hoursRequired(i,j),j};
}
}
for(int i=0; i<N; i++){
sort(dist[i],dist[i]+N);
reverse(dist[i],dist[i]+N);
}
for(int st=0; st<N; st++){
int v=st,cnt=1; vector<int> ans; ans.push_back(v);
int used[N]; memset(used,0,sizeof(used)); used[v]=1;
int mn = 1e9+100;
while(cnt<N){
int nxt=-1;
for(int j=0; j<N; j++){
if(dist[v][j].first <= mn && !used[dist[v][j].second]){
nxt = dist[v][j].second; mn=min(mn,dist[v][j].first); break;
}
}
if(nxt==-1) break;
used[nxt]=1; cnt++; v=nxt; ans.push_back(v);
}
if(ans.size()==N){
return ans;
}
}
exit(6);
return std::vector<int>(N);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |