QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#103985#6397. Master of Both IIIHe_Ren#WA 228ms36488kbC++14960b2023-05-08 09:11:162023-05-08 09:11:18

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-08 09:11:18]
  • 评测
  • 测评结果:WA
  • 用时:228ms
  • 内存:36488kb
  • [2023-05-08 09:11:16]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int MAXN = 22 + 5;
const int ALL = (1<<22) + 5;
const int mod = 998244353;
const ll linf = 0x3f3f3f3f3f3f3f3f;

#define bbit(i) (1<<(i))
#define bdig(x,i) (((x)>>(i))&1)

ll a[MAXN];

int main(void)
{
	int n;
	scanf("%d",&n);
	for(int i=0; i<n; ++i)
		scanf("%lld",&a[i]);
	
	reverse(a+1, a+n);
	
	int all = (1<<n)-1;
	
	static ll f[ALL];
	memset(f, 0x3f, sizeof(f));
	f[1] = 0;
	for(int mask=1; mask<=all; ++mask)
	{
		for(int i=0; i<n; ++i)
		{
			int nxt = mask;
			nxt |= (mask << i) & all;
			nxt |= ((mask << i) >> n) & all;
			f[nxt] = min(f[nxt], f[mask] + a[i]);
		}
	}
	
	ll ans = 0;
	for(int mask=all; mask>=1; --mask)
	{
		ans = (ans + f[mask] %mod * mask) %mod;
		for(int i=0; i<n; ++i) if(bdig(mask, i))
			f[mask ^ bbit(i)] = min(f[mask ^ bbit(i)], f[mask]);
	}
	printf("%lld\n",ans);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 4ms
memory: 36332kb

input:

3
2 1 2

output:

45

result:

ok 1 number(s): "45"

Test #2:

score: 0
Accepted
time: 7ms
memory: 36380kb

input:

4
1919810 999999998 999999997 114114514

output:

152175989

result:

ok 1 number(s): "152175989"

Test #3:

score: 0
Accepted
time: 7ms
memory: 36364kb

input:

3
842160586 705327547 868243944

output:

78597628

result:

ok 1 number(s): "78597628"

Test #4:

score: 0
Accepted
time: 11ms
memory: 36488kb

input:

5
198327434 147392532 760837755 771109105 676721155

output:

751568230

result:

ok 1 number(s): "751568230"

Test #5:

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

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: 7ms
memory: 36356kb

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: 8ms
memory: 36276kb

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: 109ms
memory: 36328kb

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
Wrong Answer
time: 228ms
memory: 36364kb

input:

21
805448889 595358753 391340394 525130530 272725205 157594893 261894302 29704333 909085958 127205196 104570238 495437480 458664573 599968678 690908307 220500006 735062204 172834136 241126905 814694254 294923292

output:

377942368

result:

wrong answer 1st numbers differ - expected: '260115885', found: '377942368'