이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fun.h"
#include<bits/stdc++.h>
using namespace std;
#define rep(a, b) for(int a = 0; a < (b); ++a)
#define st first
#define nd second
#define pb push_back
#define all(a) a.begin(), a.end()
vector<int>createFunTour(int n, int q) {
pair<int,int>mi={n, n};
rep(i, n) {
pair<int,int>p={attractionsBehind(0, i), i};
if(p.st*2>=n) mi=min(mi, p);
}
vector<pair<int,int>>P, V[3];
rep(i, n) P.pb({hoursRequired(mi.nd, i), i});
sort(all(P));
for(int i=1; i<P.size(); ++i) {
int l=0;
while(l<2 && V[l].size()>0) {
int x=hoursRequired(P[i].nd, V[l][0].nd);
if(x==P[i].st-1) break;
++l;
}
V[l].pb(P[i]);
}
vector<int>ans;
int lst=3;
rep(i, n-1) {
pair<int,int>ma={-1, -1};
rep(j, 3) if(j!=lst && V[j].size()) ma=max(ma, {V[j].back().st, j});
lst=ma.nd;
assert(V[ma.nd].size()>0);
ans.pb(V[ma.nd].back().nd);
V[ma.nd].pop_back();
}
ans.pb(P[0].nd);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
fun.cpp: In function 'std::vector<int> createFunTour(int, int)':
fun.cpp:18:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | for(int i=1; i<P.size(); ++i) {
| ~^~~~~~~~~
# | 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... |