# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
685716 | Summers | Beautiful row (IZhO12_beauty) | C++14 | 3068 ms | 1748 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<vector>
#define endl '\n'
using namespace std;
int a[1000000], b[1000000], dp[(1<<22)][23], n;
int rec(int mask, int last)
{
if(mask==((1<<n)-1)) return 1;
if(last!=-1 && dp[mask][last]!=0)return dp[mask][last];
int an=0;
for(int i=0;i<n;i++)
{
if((mask&(1<<i))==0)
{
if(last==-1 || (a[last]==a[i] || b[last]==b[i]))
{
an+=rec(mask|(1<<i), i);
}
}
}
return dp[mask][last]=an;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int i,j,t,p,p1, ans=0;
cin>>n;
for(i=0;i<n;i++)
{
cin>>p;
p1=p;
while(p>0)
{
a[i]+=p%2;
p/=2;
if(p1%3==1)b[i]++;
p1/=3;
}
}
ans+=rec(0,-1);
cout<<ans<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |