# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100599 | figter001 | 마상시합 토너먼트 (IOI12_tournament) | C++17 | 1064 ms | 2220 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include "grader.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
vector<int> r,tmp,nxt,e;
int GetBestPosition(int N, int C, int R, int *K, int *S, int *E) {
for(int i=0;i<N-1;i++){
r.push_back(K[i]);
}
int ans = 0,at = 0;
for(int i=0;i<N ;i++){
int cur = 0;
tmp = r;
tmp.insert(tmp.begin() + i,R);
for(int j=0;j<C;j++){
nxt = e;
int l = S[j];
int r = E[j];
int mx = -1;
for(int x=0;x<tmp.size();x++){
if(x >= l && x <= r){
mx = max(mx,tmp[x]);
if(x == r){
nxt.push_back(mx);
if(mx == R)
cur++;
}
}else{
nxt.push_back(tmp[x]);
}
}
tmp = nxt;
}
if(cur > ans){
ans = cur;
at = i;
}
}
return at;
}
컴파일 시 표준 에러 (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... |