# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
429740 | SuckTinHock | 아름다운 순열 (IZhO12_beauty) | C++17 | 1120 ms | 164364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
using namespace std;
int n;
int cnt2[25], cnt3[25];
int dp[1 << 20][20];
vector<int> G[25];
int ter(int x)
{
int res = 0;
while (x > 0)
{
res += (x % 3 == 1);
x /= 3;
}
return res;
}
void build()
{
for (int i = 1; i < n; ++i)
{
for (int j = 0; j < i; ++j)
{
if (cnt2[i] == cnt2[j] || cnt3[i] == cnt3[j])
{
G[i].push_back(j);
G[j].push_back(i);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |