QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#154546#6645. 百合jiangtaizhe001WA 195ms36124kbC++142.4kb2023-08-31 18:53:472023-08-31 18:53:49

Judging History

你现在查看的是最新测评结果

  • [2023-08-31 18:53:49]
  • 评测
  • 测评结果:WA
  • 用时:195ms
  • 内存:36124kb
  • [2023-08-31 18:53:47]
  • 提交

answer

#include<queue>
#include<cstdio>
#include<cstring>
#include<iostream>
#define db double
#define pc putchar
#define ll long long
#define Tp template<typename _T>
Tp _T mabs(_T a){ return a<0?-a:a; }
Tp _T mmax(_T a,_T b){ return a<b?b:a; }
Tp _T mmin(_T a,_T b){ return a<b?a:b; }
Tp void mswap(_T &a,_T &b){ _T t=a; a=b; b=t; return; }
using namespace std;
struct IO{
	char buf[1<<21],*p1,*p2;
	char gc(){ return p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<21,stdin),p1==p2)?EOF:*p1++; }
	IO & operator >> (char &x){ x=gc(); while(x=='\r'||x=='\n'||x==' ') x=gc(); return *this; }
	Tp IO & operator >> (_T &x){
		x=0; char c=gc(); bool f=0; while(c<'0'||c>'9'){ if(c=='-') f^=1; c=gc(); }
		while('0'<=c&&c<='9') x=(x<<1)+(x<<3)+(c^48),c=gc(); f?x=-x:0; return *this;
	}
	int st[39],top;
	IO & operator << (char x) { pc(x); return *this; }
	Tp IO & operator << (_T x){
		if(x<0) x=-x,pc('-'); if(x==0){ pc('0'); return *this; }
		top=0; while(x) st[++top]=x%10,x/=10;
		while(top--) pc(st[top+1]+48); return *this;
	}
}fin;
#define maxn 200039
#define maxm 400039
int n,m,s,k,u,v,w,a[39],head[maxn],to[maxm],nex[maxm],c[maxm],kkk;
#define add(x,y,z) nex[++kkk]=head[x]; head[x]=kkk; to[kkk]=y; c[kkk]=z
ll f[maxn][19],dis[maxn]; int vis[maxn];
struct JTZ{
	int num; ll dis;
	bool operator < (const JTZ &x) const {
		return this->dis > x.dis;
	}
};
priority_queue<JTZ> q,E;
void Dij(){
	int i; JTZ cur; for(i=0;i<n;i++) q.push((JTZ){i,dis[i]}),vis[i]=0;
	while(!q.empty()){
		cur=q.top(); q.pop(); if(vis[cur.num]) continue; vis[cur.num]=1; dis[cur.num]=cur.dis;
		for(i=head[cur.num];i;i=nex[i]) if(!vis[to[i]]) q.push((JTZ){to[i],c[i]+cur.dis});
	} return;
}
int main(){
#ifdef LOCAL
	freopen("1.in","r",stdin);
	freopen("1.out","w",stdout);
#endif
	fin>>k>>m>>s; n=(1<<k); int i,j,l,_,t; for(i=1;i<=k;i++) fin>>a[i];
	for(i=1;i<=m;i++){ fin>>u>>v>>w; add(u,v,w); add(v,u,w); }
	for(i=0;i<n;i++) dis[i]=a[__builtin_popcount(i^s)]; dis[s]=0;
	for(_=0;_<k;_++){
		Dij();
		for(i=0;i<n;i++) for(j=1;j<=k;j++) f[i][j]=1e18;
		for(i=0;i<n;i++) f[i][0]=dis[i];
		for(l=0;l<k;l++) for(i=0;i<n;i++) if(i&(1<<l)){
			t=(i^(1<<l));
			for(j=k;j>=1;j--) f[t][j]=mmin(f[t][j],f[i][j-1]),f[i][j]=mmin(f[i][j],f[t][j-1]);
		}
		t=0;
		for(i=0;i<n;i++) for(j=1;j<=k;j++) if(f[i][j]+a[j]<dis[i]) dis[i]=f[i][j]+a[j],t=1;
		if(!t) break;
	}
	Dij();
	for(i=0;i<n;i++) fin<<dis[i]<<" \n"[i==n];
	return 0;
}////

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 195ms
memory: 36124kb

input:

17 176734 32035
174241040 312806717 869838047 1051792036 618192507 729602782 144984364 904057367 922632751 676477964 651564213 314995751 370303789 14711019 7843270 941966995 532030000
50422 32035 12218
70235 32035 1913
84994 70235 27964
94874 84994 3469
32802 50422 6989
18176 32802 17541
91233 50422...

output:

104839 7871804 62870 66963 79027 7868957 77164 7858869 7869592 7863873 7863873 64039 51115 104082 70150 72482 57864 60745 69433 62907 88618 7858789 7881299 7872044 51092 68271 7855529 7881281 94531 87056 7877506 59789 80215 7863790 87126 74831 74335 62096 51671 68573 7863873 44764 7875532 7860660 78...

result:

wrong answer 1st lines differ - expected: '104839 7871804 62870 66963 790...71 64588 7862477 7869833 105717', found: '104839 7871804 62870 66963 790...1 64588 7862477 7869833 105717 '