QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#573164 | #6397. Master of Both III | shstyle# | TL | 1615ms | 720920kb | C++20 | 2.3kb | 2024-09-18 17:34:19 | 2024-09-18 17:34:20 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=(1<<22)+10,mod=998244353;
typedef long long ll;
typedef pair<ll,int> PII;
ll n,a[N];
int p[N];
int l[N],r[N];
mt19937 rnd(time(0));
ll mi[N];
ll dp[30][30];
ll ddp[N];
vector<PII> e[N];
bool tf[N];
int main(){
int n;
cin>>n;
for(int i=0;i<n;i++){
cin>>a[i];
}
a[0]=a[n];
memset(dp,0x3f,sizeof dp);
dp[0][0]=0;
// for(int i=0;i<n;i++) dp[0][i]=a[i];
for(int i=1;i<n;i++){
for(int j=0;j<n;j++){
int nw=(j+i)%n;
dp[i][nw]=min(dp[i-1][nw],dp[i-1][j]+a[i]);
}
// for(int j=0;j<n;j++) cout<<dp[i][j]<<" ";
// cout<<endl;
}
for(int i=0;i<n;i++){
a[i]=dp[n-1][i];
// cout<<a[i]<<endl;
}
for(int i=1;i<(1<<n);i++){
vector<int> v;
for(int j=0;j<n;j++){
if((i>>j)&1) v.push_back(j);
}
// int nw=0;
for(int j=0;j<n;j++){
int nw=0;
for(auto k:v){
int xx=(k-j+n)%n;
nw|=(1<<xx);
}
nw|=i;
// cout<<i<<" "<<nw<<" "<<a[j]<<endl;
e[i].push_back({nw,a[j]});
}
}
for(int i=1;i<(1<<n);i++){
for(int j=0;j<n;j++){
if((i>>j)&1){
int nw=i^(1<<j);
if(nw!=0){
e[i].push_back({nw,0});
// cout<<i<<" "<<nw<<endl;
}
}
}
}
memset(ddp,0x3f,sizeof ddp);
priority_queue<PII,vector<PII>,greater<PII>> q;
q.push({0,1});
ddp[1]=0;
while(q.size()){
int t=q.top().second;
q.pop();
if(tf[t]) continue;
// cout<<t<<" "<<ddp[t]<<endl;
tf[t]=1;
sort(e[t].begin(),e[t].end());
for(auto [j,w]:e[t]){
if(ddp[j]>ddp[t]+w){
// cout<<t<<" "<<j<<" "<<ddp[j]<<" "<<ddp[t]<<" "<<w<<endl;
ddp[j]=ddp[t]+w;
if(!tf[j])
q.push({ddp[j],j});
}
}
}
ll ans=0;
for(int i=1;i<(1<<n);i++){
// cout<<ddp[i]<<endl;;
ll res=ddp[i]%mod*i%mod;
ans=(ans+res)%mod;
}
cout<<ans<<endl;
}
詳細信息
Test #1:
score: 100
Accepted
time: 8ms
memory: 42604kb
input:
3 2 1 2
output:
45
result:
ok 1 number(s): "45"
Test #2:
score: 0
Accepted
time: 4ms
memory: 42604kb
input:
4 1919810 999999998 999999997 114114514
output:
152175989
result:
ok 1 number(s): "152175989"
Test #3:
score: 0
Accepted
time: 6ms
memory: 42604kb
input:
3 842160586 705327547 868243944
output:
78597628
result:
ok 1 number(s): "78597628"
Test #4:
score: 0
Accepted
time: 4ms
memory: 42608kb
input:
5 198327434 147392532 760837755 771109105 676721155
output:
751568230
result:
ok 1 number(s): "751568230"
Test #5:
score: 0
Accepted
time: 7ms
memory: 42992kb
input:
10 831766351 33417723 223739726 80131988 348810263 415437931 119999060 799356097 512022962 23197703
output:
308170104
result:
ok 1 number(s): "308170104"
Test #6:
score: 0
Accepted
time: 13ms
memory: 44848kb
input:
12 892965903 35291219 261557729 131390943 457251874 944586973 724767219 190756777 658923976 587806068 793999675 378390067
output:
964920873
result:
ok 1 number(s): "964920873"
Test #7:
score: 0
Accepted
time: 19ms
memory: 53812kb
input:
14 249132751 477356204 594343028 32906794 270726189 883801423 329535378 877124753 100792287 152414432 142520554 196476850 924736849 383197276
output:
796031217
result:
ok 1 number(s): "796031217"
Test #8:
score: 0
Accepted
time: 1615ms
memory: 720920kb
input:
20 627365465 726842612 947302944 649244156 293375951 318148820 237155023 981487641 688151803 844901013 430309799 733877736 520864483 720366437 28746495 143052089 306590290 18586578 662663479 375430013
output:
179404754
result:
ok 1 number(s): "179404754"
Test #9:
score: -100
Time Limit Exceeded
input:
21 805448889 595358753 391340394 525130530 272725205 157594893 261894302 29704333 909085958 127205196 104570238 495437480 458664573 599968678 690908307 220500006 735062204 172834136 241126905 814694254 294923292