이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
const int maxn = 1e2 + 20;
int dp[maxn] , n , l[maxn] , r[maxn] , p[maxn] , cnt[maxn][maxn];
void init(int N, int a[], int b[])
{
n = N;
for(int i = 0; i < n; i++)
{
l[i] = a[i] , r[i] = b[i];
cnt[l[i]][r[i]]++;
}
for(int i = n; i >= 1; i--)
{
for(int j = i; j <= n; j++)
{
cnt[i][j] += cnt[i + 1][j];
cnt[i][j] += cnt[i][j - 1];
cnt[i][j] -= cnt[i + 1][j - 1];
}
}
}
int can(int m, int k[])
{
sort(k , k + m);
for(int i = 1; i <= m; i++)
p[i] = k[i - 1];
p[0] = 0;
dp[0] = 0;
for(int i = 1; i <= m; i++)
{
dp[i] = -1e9;
for(int j = i - 1; j >= 0; j--)
dp[i] = max(dp[i] , dp[j] + 1 + cnt[p[j] + 1][p[i] - 1]);
if(dp[i] + cnt[p[i] + 1][n] - n > 0)
return 0;
}
return 1;
}
# | 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... |