이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prison.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define rep(a,b) for (int a = 0; a < (b); ++a)
#define pb push_back
#define all(t) t.begin(), t.end()
const int MAXN = 5005;
vector<vector<int>> wyn;
vector<vector<int>> devise_strategy(int N)
{
wyn.assign(N+1,{});
rep(i,N+1) wyn[i].assign(N+1,-1);
wyn[0][0] = 0;
for(int i = 1; i <= N; ++i) wyn[0][i] = i;
for(int i = 1; i <= N; ++i)
{
wyn[i][0] = 1;
for(int j = 0; j <= N; ++j)
{
if(i < j) wyn[i][j] = -1;
else wyn[i][j] = -2;
}
}
return wyn;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |