QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#287415 | #5407. 基础图论练习题 | lotus_f | 0 | 68ms | 103956kb | C++14 | 3.8kb | 2023-12-20 15:20:00 | 2023-12-20 15:20:01 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int mod=1e9+7;
int pow2[25000010];
int n;
bool e[5010][5010];
int deg[5010];
pair<int,int> px[5010];
int tot,r[5010];
int ans[5010][5010];
int ddeg[5010];
void get_hamilton(vector<int> &now)
{
if(now.size()==1) return;
int x=now[0];
for(int i:now) ddeg[i]-=e[i][x];
int ttot=0; pair<int,int> ppx[5010];
for(int i:now) if(i!=x) ppx[++ttot]={ddeg[i],i};
sort(ppx+1,ppx+ttot+1,greater<pair<int,int>>());
int sum=0,lst=0;
int cnt=0; vector<int> gt[5010];
for(int i=1; i<=ttot; ++i)
{
sum+=ppx[i].first;
if(sum==i*(i-1)/2+i*(ttot-i))
{
++cnt;
for(int j=lst+1; j<=i; ++j) gt[cnt].push_back(ppx[j].second),ddeg[ppx[j].second]-=ttot-i;
lst=i;
get_hamilton(gt[cnt]);
}
}
if(cnt==1)
{
vector<int> ans;
for(int i=0; i<gt[1].size(); ++i)
{
if(e[gt[1][i]][x] && e[x][gt[1][(i+1)%gt[1].size()]])
{
for(int j=0; j<=i; ++j) ans.push_back(gt[1][j]);
ans.push_back(x);
for(int j=i+1; j<gt[1].size(); ++j) ans.push_back(gt[1][j]);
break;
}
}
now=ans;
}
else
{
vector<int> ans;
for(int i=1; i<=cnt; ++i)
{
if(i==1)
{
int wz=0;
while(!e[x][gt[i][wz]]) ++wz;
for(int j=wz; j<gt[i].size(); ++j) ans.push_back(gt[i][j]);
for(int j=0; j<wz; ++j) ans.push_back(gt[i][j]);
}
else if(i==cnt)
{
int wz=0;
while(!e[gt[i][wz]][x]) ++wz;
for(int j=wz+1; j<gt[i].size(); ++j) ans.push_back(gt[i][j]);
for(int j=0; j<=wz; ++j) ans.push_back(gt[i][j]);
}
else
{
for(int j:gt[i]) ans.push_back(j);
}
}
ans.push_back(x);
now=ans;
}
}
int cnt[5010];
int get_ans(int x,int y)
{
if(e[x][y]) --deg[x],++deg[y];
else --deg[y],++deg[x];
memset(cnt,0,(n+5)*4);
for(int i=1; i<=n; ++i) ++cnt[deg[i]];
int wz=0,sum=0,ans=0;
for(int i=n; i>=0; --i)
{
for(int j=1; j<=cnt[i]; ++j)
{
++wz,sum+=i;
if(sum==wz*(wz-1)/2+wz*(n-wz)) ++ans;
}
}
if(e[x][y]) ++deg[x],--deg[y];
else ++deg[y],--deg[x];
return ans;
}
int main()
{
pow2[0]=1;
for(int i=1; i<=2.5e7; ++i) pow2[i]=pow2[i-1]*2%mod;
ios::sync_with_stdio(false),cin.tie(0);
int t; cin>>t; while(t--)
{
cin>>n;
for(int i=1; i<=n; ++i) for(int j=1; j<=n; ++j) e[i][j]=0;
memset(deg,0,(n+5)*4);
for(int i=2; i<=n; ++i)
{
string s; cin>>s;
for(int j=1; j<i; ++j)
{
int now=s[(j-1)/4];
if('0'<=now && now<='9') now-='0';
else now=10+now-'A';
if(now>>((j-1)%4)&1) e[i][j]=1,++deg[i];
else e[j][i]=1,++deg[j];
}
}
for(int i=1; i<=n; ++i) px[i]={deg[i],i};
sort(px+1,px+n+1,greater<pair<int,int>>());
tot=0;
int sum=0;
for(int i=1; i<=n; ++i)
{
sum+=px[i].first;
if(sum==i*(i-1)/2+i*(n-i)) r[++tot]=i;
}
for(int i=1; i<=tot; ++i)
{
for(int j=i+1; j<=tot; ++j)
{
int aans;
if(i+1==j && r[i]-r[i-1]==1 && r[j]-r[j-1]==1) aans=tot;
else aans=tot-(j-i);
for(int k=r[i-1]+1; k<=r[i]; ++k)
{
for(int l=r[j-1]+1; l<=r[j]; ++l) ans[px[k].second][px[l].second]=ans[px[l].second][px[k].second]=aans;
}
}
}
for(int i=1; i<=tot; ++i)
{
vector<int> now;
for(int j=r[i-1]+1; j<=r[i]; ++j) now.push_back(px[i].second),ddeg[px[j].second]=0;
for(int j:now)
{
for(int k:now) ddeg[j]+=e[j][k];
}
get_hamilton(now);
for(int j=r[i-1]+1; j<=r[i]; ++j)
{
for(int k=r[i-1]+1; k<=r[i]; ++k) ans[px[j].second][px[k].second]=tot;
}
for(int j=0; j<now.size(); ++j)
{
int x=px[j].second,y=px[(j+1)%now.size()].second;
ans[x][y]=ans[y][x]=get_ans(x,y);
}
}
int aans=0;
for(int i=1; i<=n; ++i)
{
for(int j=1; j<i; ++j) aans=(aans+1ll*pow2[(i-2)*(i-1)/2+j-1]*ans[i][j])%mod;
}
cout<<aans<<'\n';
}
return 0;
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 68ms
memory: 103956kb
input:
10000 100 1 2 2 8 C0 F0 27 78 AE1 C01 511 D87 EF20 3873 2742 73D0 DC9B0 FB2A3 9C011 9B4E0 95DC00 A7B980 F43531 6A6245 5347BE0 1A6C8A1 88E46D6 64CF3AE D25F63C1 C894E4C3 1C0AFD73 EC1C3F9A 087CE17C0 22149A380 B28038AF1 B9CA21C7F D78F5307C1 49045489A2 72C4DE6FD1 7713F40D05 EEE8878EEC1 310E62812B1 DA9D5B...
output:
281603732 13 268435455 371842543 63 0 1983 2 268435455 268435455 719476259 32767 2 719476259 63 2097151 2509 0 719476259 371842543 2097151 32767 32767 3113982 719476259 502774846 719476259 719476259 719476259 64360 268435455 719476259 32767 2097151 719476259 371842543 63 63 115 2097151 268435455 13 ...
result:
wrong answer 3rd numbers differ - expected: '285212672', found: '268435455'
Subtask #2:
score: 0
Skipped
Dependency #1:
0%
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Skipped
Dependency #1:
0%
Subtask #5:
score: 0
Skipped
Dependency #1:
0%