QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#258594#6298. ColoringSATSKYWA 476ms200088kbC++202.7kb2023-11-19 20:44:302023-11-19 20:44:31

Judging History

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

  • [2023-11-19 20:44:31]
  • 评测
  • 测评结果:WA
  • 用时:476ms
  • 内存:200088kb
  • [2023-11-19 20:44:30]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;using ll=long long;const int M=998244353;const double eps=1e-10;const ll inf=1e17;
bool o=0;
struct S
{
	vector<int>fa,cov,ring;
	vector<ll>w,c;
	vector<vector<int>>es;
	vector<vector<ll>>dres;
	vector<vector<vector<ll>>>dp;//ring_pos/lay_cnt/drop_cnt
	int n,S,rlen;
	void ini()
	{
		fa.resize(n+1);w.resize(n+1);c.resize(n+1);es.resize(n+1);cov.resize(n+1,0);
		dres.resize(n+1,vector<ll>(n+1));
	}
	void findring()
	{
		int x,cnt=n+10;
		for(x=fa[S];cnt&&x!=S;x=fa[x],cnt--)ring.push_back(x);	
		if(n==5000)
		{
			cout<<"siz:"<<int(ring.size())<<'|';
			cout<<ring[0]<<"?"<<ring.back()<<'\n';
			cout<<S<<"&"<<x<<'\n';
			int tc=0;
			for(auto k:ring)
			{
				cout<<k<<'_';tc++;
				if(tc%40==0)cout<<'\n';
			}
		}
		if(cnt==-1)ring.clear();ring.push_back(x);reverse(ring.begin(),ring.end());
	}
	void spr(int x)
	{
		cov[x]=1;for(int i=0;i<=n;i++)dres[x][i]=w[x]*(i&1)-c[x]*i;
		for(auto k:es[x])if(!cov[k]){spr(k);ll mx=0;for(int i=0;i<=n;i++)mx=max(mx,dres[k][i]),dres[x][i]+=mx;}
		if(o)
		{
			cout<<x<<":val:"<<w[x]<<" cost:"<<c[x]<<" fa:"<<fa[x]<<'\n';
			cout<<"dres:";for(auto kk:dres[x])cout<<kk<<'_';cout<<'\n';
			cout<<"***\n";
		}		
	}
	void solve()
	{
		cin>>n>>S;ini();for(int i=1;i<=n;i++)cin>>w[i];for(int i=1;i<=n;i++)cin>>c[i];
		for(int i=1;i<=n;i++)cin>>fa[i],es[fa[i]].push_back(i);
		findring();rlen=ring.size();for(auto k:ring)cov[k]=1;for(auto k:ring)spr(fa[k]);
		//cout<<"ring_siz:"<<rlen<<'\n';for(auto k:ring)cout<<k<<'_';cout<<'\n';
		dp.resize(2,vector<vector<ll>>(n+1,vector<ll>(3,-inf)));
		for(int i=0,sw=((rlen-1)&1);i<=n;i++)
		{
			dp[sw][i][0]=dres[ring.back()][i];
			//cout<<rlen-1<<'/'<<ring.back()<<":pos"<<i<<" drop:"<<0<<":"<<dp[sw][i][0]<<'\n';
		}
		for(int i=rlen-2,sw=(i&1);i>=0;i--,sw^=1)
		{
			dp[sw].assign(n+1,vector<ll>(3,-inf));
			for(int a=0;a<=n;a++)
			{
				for(int b=a;b>=max(0,a-2);b--)for(int c=b;c>=max(0,a-2);c--)
					dp[sw][a][a-c]=max(dp[sw][a][a-c],dp[sw^1][b][b-c]);
				for(int e=0;e<3;e++)
				{
					dp[sw][a][e]+=dres[ring[i]][a];
					//cout<<i<<'/'<<ring[i]<<":pos"<<a<<" drop:"<<e<<":"<<dp[sw][a][e]<<'\n';
				}
			}
		}
		ll res=-inf;
		//if(rlen<=2){cout<<"0\n";return;}
		if(rlen==1)res=dp[0][1][0];
		else if(rlen==2)res=max(dp[0][2][2],max(dp[0][1][0],dp[0][1][1]));
		else for(int i=1;i<=n;i++)for(int e=0;e<3;e++)res=max(res,dp[0][i][e]);
		cout<<res+c[S]<<"\n";
	}
};
void precal()
{

}
int main()
{
	//freopen("1.in","r",stdin);
	//cout<<fixed<<setprecision(12);
	ios::sync_with_stdio(0);cin.tie(0);precal();
	int t=1;//cin>>t;
	//clock_t a=clock();
	while(t--){S SS;SS.solve();}
	//cout<<"Time:"<<double(clock()-a)<<'\n';
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3644kb

input:

3 1
-1 -1 2
1 0 0
3 1 2

output:

1

result:

ok 1 number(s): "1"

Test #2:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

10 8
36175808 53666444 14885614 -14507677 -92588511 52375931 -87106420 -7180697 -158326918 98234152
17550389 45695943 55459378 18577244 93218347 64719200 84319188 34410268 20911746 49221094
8 1 2 2 8 8 4 7 8 4

output:

35343360

result:

ok 1 number(s): "35343360"

Test #3:

score: -100
Wrong Answer
time: 476ms
memory: 200088kb

input:

5000 1451
531302480 400140870 -664321146 -376787089 -440627168 -672055995 924309614 2764785 -225700856 880835131 -435550509 162278080 -635253658 251803267 -499868931 213283508 603121701 -603347266 541062018 -502078443 -585620031 486788884 864390909 -670529282 -63580194 512939729 691685896 481123612 ...

output:

siz:5010|4088?3335
1451&283
4088_800_2415_72_4800_1465_4211_3815_4635_3668_2985_3258_2714_3468_740_3955_2709_1674_1243_3408_2178_4064_4124_4558_2986_3816_2701_2243_106_1470_1008_2315_3953_2661_1701_4269_3855_3813_4365_2324_
193_227_2545_3354_877_3989_3045_4005_803_3478_4547_819_4205_1607_4907_1512_2...

result:

wrong output format Expected integer, but "siz:5010|4088?3335" found