QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#464941 | #6406. Stage Clear | dengrk | WA | 119ms | 20244kb | C++14 | 1.2kb | 2024-07-06 16:18:16 | 2024-07-06 16:18:17 |
Judging History
answer
#include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
const int N=72,N1=20;
const long long PIN=4557430888798830399;
int n,m;
int len_list=0,e[N],ne[N],h[N];
long long a[N],b[N],f[1<<N1],g[1<<N1];
void add_once(int a,int b){
e[len_list]=b;
ne[len_list]=h[a];
h[a]=len_list;
len_list++;
}
long long solve1(){
int i,j,k,x,y;
long long s1;
for(i=1;i<n;i++)
scanf("%lld%lld",&a[i],&b[i]);
for(i=1;i<(1<<n);i++)
for(j=0;j<n;j++){
if(!(i>>j&1)) continue;
g[i]+=b[j]-a[j];
}
memset(h,-1,sizeof h);
for(i=1;i<=m;i++){
scanf("%d%d",&x,&y);
add_once(--x,--y);
}
memset(f,PIN,sizeof f);
f[0]=PIN,f[1]=0;
for(i=1;i<(1<<n);i+=2)
for(j=0;j<n;j++){
if(!(i>>j&1)) continue;
for(k=h[j];k>=0;k=ne[k]){
if(i>>e[k]&1) continue;
s1=max(f[i],a[e[k]]-g[i]);
f[i|(1<<e[k])]=min(f[i|(1<<e[k])],s1);
}
}
return f[(1<<n)-1];
}
long long solve2(){
return 0;
}
int main(){
// freopen("HP.in","r",stdin);
// freopen("HP.out","w",stdout);
scanf("%d%d",&n,&m);
if(n<=N1) printf("%lld",solve1());
else printf("%lld",solve2());
// fclose(stdin);
// fclose(stdout);
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 12756kb
input:
4 4 4 2 5 3 2 6 1 2 1 3 2 4 3 4
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 3ms
memory: 16232kb
input:
15 14 254040392438309 117083115436273 500005748229691 557255157630172 821034233718230 865199673774998 659892147898798 987564141425694 81172575487567 811635577877255 751768357864605 341103322647288 454926350150218 140191090713900 921608121471585 659295670987251 223751724062143 505619245326640 8907765...
output:
1665396301509143
result:
ok 1 number(s): "1665396301509143"
Test #3:
score: 0
Accepted
time: 32ms
memory: 16104kb
input:
18 17 636830992776530 847574431876821 330869946457865 78274534165482 450581372553540 11565219334965 8736347226844 17186323694285 870805093198860 559070167736042 674369178493171 930151818400874 641605209598997 222521062460239 450936030349531 469197172169023 831295459816974 626096008793091 53095460351...
output:
2375957544280218
result:
ok 1 number(s): "2375957544280218"
Test #4:
score: 0
Accepted
time: 119ms
memory: 20244kb
input:
20 19 539893468691183 767805205447882 240338186903141 960937349402327 942645580569365 896509929612645 542601575005817 191461109090531 540992546866047 765080044816119 904535155855114 858111921213175 452499200048240 115895143306864 983856946412026 838504718536099 586421298181479 265212699386882 677124...
output:
800919806038419
result:
ok 1 number(s): "800919806038419"
Test #5:
score: -100
Wrong Answer
time: 0ms
memory: 3692kb
input:
24 23 114281007218527 308690671179962 145951034437731 718976086594208 709172151907814 926071954787084 224496444610281 498657753059525 874422017133378 857676356343078 532175866197017 818525693672607 303837639402605 374469705563954 512244364294540 952911486867703 748959419417502 249992707230361 512696...
output:
0
result:
wrong answer 1st numbers differ - expected: '114281007218527', found: '0'