# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
912998 | Muhammad_Aneeq | 마상시합 토너먼트 (IOI12_tournament) | C++17 | 1029 ms | 3172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
int GetBestPosition(int N, int C, int R, int K[], int S[], int E[])
{
int ans=0,pos=0;
ordered_set s;
for (int i=0;i<N;i++)
{
s={};
for (int j=0;j<N;j++)
s.insert(j);
int z=0;
for (int j=0;j<C;j++)
{
int ma=0;
bool w=0;
for (int k=S[j];k<=E[j];k++)
{
int z=*s.find_by_order(k);
int f=0;
if (z==i)
{
w=1;
f=R;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |