QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#112633#4412. Boss RushToboAC ✓2806ms25904kbC++201.7kb2023-06-12 16:45:132023-06-12 16:45:16

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-06-12 16:45:16]
  • 评测
  • 测评结果:AC
  • 用时:2806ms
  • 内存:25904kb
  • [2023-06-12 16:45:13]
  • 提交

answer

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<map>
#include<queue>
#include<vector>
#include<cmath>
using namespace std;
const int N=1e5+10;
typedef long long ll;
ll sum[20][N];//sum[i][j]表示第i个技能前j秒可以造成的伤害 
ll H,n,t[20],len[20];
ll f[1<<20];//f[st]表示状态st在某段时间内最多造成的伤害(某段时间是二分值)
ll sumt[1<<20];//sumt[st]表示触发技能在状态st下最少需要的触发时间
bool check(ll T)
{
	ll ans=0;
	for(int i=1;i<1<<n;i++) f[i]=-1;
	f[0]=0;
	for(int st=0;st<1<<n;st++)
	{
		ll w=f[st]; 
		if(w==-1) continue;//说明当前状态st在t时间内无法完全触发
		if(w>=H) return true;//说明状态st下在t时间内造成的伤害已经可以杀死怪物 
		if(sumt[st]>T) continue;
		for(int i=0;i<n;i++)//枚举还未触发的技能 
		{
			if(st>>i&1) continue;//该技能已触发
			if(sumt[st]+len[i]-1<=T) 
				f[st|(1<<i)]=max(f[st|(1<<i)],f[st]+sum[i][len[i]]);
			else	
				f[st|(1<<i)]=max(f[st|(1<<i)],f[st]+sum[i][T-sumt[st]+1]);
		}
	}
	return false;
}
int main()
{
	int T;
	cin>>T;
	while(T--)
	{
		scanf("%lld%lld",&n,&H);
		for(int i=0;i<n;i++)
		{
			scanf("%lld%lld",&t[i],&len[i]);
			for(int j=1;j<=len[i];j++)
			{
				scanf("%lld",&sum[i][j]);
				sum[i][j]+=sum[i][j-1];
			}
		}
		for(int st=1;st<1<<n;st++)//预处理触发技能在状态st下最少需要的触发时间
		{
			sumt[st]=0;//别忘了初始化 
			for(int i=0;i<n;i++)
			if(st>>i&1) sumt[st]+=t[i];
		}
		ll l=0,r=1e18;
		while(l<r)
		{
			ll mid=l+r>>1;
			if(check(mid)) r=mid;
			else l=mid+1;
		}
		if(check(l)) printf("%lld\n",l);
		else puts("-1");
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2806ms
memory: 25904kb

input:

100
10 293367178351
89 52
117480172 951737726 356435682 180765874 775623083 281703307 290364363 366421773 989361116 796791408 389709469 534380525 412173405 463001602 578985383 272777986 833157533 444367936 841474617 472532665 952319800 583679381 924952511 892974994 105808118 171375863 320943603 4870...

output:

368
579
628
249
425
400
296
687
321
579
509
594
475
538
366
694
390
471
524
138
194
292
362
181
357
210
74
190
433
288
241
245
378
426
326
255
134
171
288
138
383
293
135
195
356
129
279
211
168
286
438
152
574
335
421
457
213
315
278
421
285
496
336
385
500
451
300
442
333
433
130
289
329
412
200
1...

result:

ok 100 lines