记录编号 |
577635 |
评测结果 |
WAAAAAWAAAWW |
题目名称 |
界外科学 |
最终得分 |
66 |
用户昵称 |
yrtiop |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.273 s |
提交时间 |
2022-11-16 18:52:25 |
内存使用 |
5.74 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using i64 = long long;
#define fir first
#define sec second
const int maxn = 50;
int n,m;
std::pair<int,int> a[maxn];
int main() {
freopen("outsci.in","r",stdin);
freopen("outsci.out","w",stdout);
scanf("%d %d",&n,&m);
for(int i = 1;i <= n;++ i)
scanf("%d",&a[i].fir);
for(int i = 1;i <= n;++ i)
scanf("%d",&a[i].sec);
i64 ans = 0;
int T = 1e6 / n;
std::mt19937 random((unsigned)time(0));
while(T --) {
i64 cur = 0;
int res = 0;
std::shuffle(a + 1 , a + 1 + n , random);
for(int i = 1;i <= n;++ i)
if((a[i].fir ^ res) <= m&&a[i].sec > 0)
res ^= a[i].fir,cur += a[i].sec;
ans = std::max(ans , cur);
}
printf("%lld",ans);
return 0;
}