# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
876455 | alexdd | Permutation (APIO22_perm) | C++17 | 474 ms | 2756 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<vector>
#include<algorithm>
#include "perm.h"
const int NRIT = 10;
const int MAXLUN = 10;
const int MINLUN = 4;
using namespace std;
vector<pair<long long,vector<int>>> secvs;
bool cmp(pair<long long,vector<int>> x, pair<long long,vector<int>> y)
{
if(x.first > y.first)
return 1;
if(x.first < y.first)
return 0;
if((int)x.second.size()<(int)y.second.size())
return 1;
return 0;
}
long long dp[MAXLUN+5];
long long calc_nrs(vector<int> v)
{
for(int i=0;i<=(int)v.size();i++)
dp[i]=0;
for(int i=0;i<(int)v.size();i++)
{
dp[v[i]]++;
for(int j=0;j<v[i];j++)
dp[v[i]] += dp[j];
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |