1003.Xor Sum 1004.Labyrinth

2023-12-07 05:18
文章标签 sum xor 1003 1004 labyrinth

本文主要是介绍1003.Xor Sum 1004.Labyrinth,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

百度之星初赛的 C D 题

Problem: 1003 Xor Sum

题意:n个数字,m个查询,n个数字为一个集合,每次查询x,求集合中的某个数字与x抑或的值最大

思路:建一棵二进制字典树,注意 long long

Code:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
using namespace std;
#define MAX(a,b) ((a)>(b)?(a):(b))
#define NODE 3200010
#define N 100010
typedef long long LL;
LL n,node,next[NODE][2],lend[NODE];
void add(LL cur,LL k)
{memset(next[node],0,sizeof(next[node]));lend[node]=0;next[cur][k]=node++;
}
LL cal(LL x)
{LL i,k,cur=0;for(i=60;i>=0;i--){k=(((LL (1))<<i)&x)?0:1;if(next[cur][k]) cur=next[cur][k];else    cur=next[cur][1-k];}return (x^lend[cur]);
}
int main()
{LL i,j,k,x,y,cur,m,cas=0,T; scanf("%I64d",&T);while(T--){scanf("%I64d%I64d",&n,&m);node=1;memset(next[0],0,sizeof(next[0]));for(i=0;i<n;i++){scanf("%I64d",&x),cur=0;for(j=60;j>=0;j--){k=((((LL)1)<<j)&x)?1:0;if(next[cur][k]==0) add(cur,k);cur=next[cur][k];}lend[cur]=x;}printf("Case #%I64d:\n",++cas);for(i=0;i<m;i++){scanf("%I64d",&y);printf("%I64d\n",y^cal(y));}}return 0;
}



Problem: 1004 Labyrinth

题意:给出一个n*m的矩阵(n,m<=100),每次只能往上或往下或往右,但不能走经过的路,现在从左上角出发到达右上角,求和的最大值。

思路:对于每列,枚举当列从st进入,从ed退出,进到下一行,暴力O(n^3)

Code:

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <vector>
#include <set>
using namespace std;
typedef long long LL;
#define maxn 110
int a[maxn][maxn];
int ans[maxn];
int sum[maxn][maxn];
int tmp[maxn];
int main(){int T,cas=0; scanf("%d",&T);while(T--){int row,col; scanf("%d%d",&row,&col);memset(sum,0,sizeof(sum));for(int i=1;i<=row;i++){for(int j=1;j<=col;j++){scanf("%d",&a[i][j]);sum[i][j]=sum[i-1][j]+a[i][j];}}memset(ans,-0x3f,sizeof(ans));ans[1]=0;for(int i=1;i<=col;i++){memset(tmp,-0x3f,sizeof(tmp));for(int st=1;st<=row;st++){for(int ed=1;ed<=row;ed++){int cnt;if(ed>st) cnt=sum[ed][i]-sum[st-1][i];else cnt=sum[st][i]-sum[ed-1][i];tmp[ed]=max(tmp[ed],ans[st]+cnt);}}memcpy(ans,tmp,sizeof(tmp));}printf("Case #%d:\n%d\n",++cas,ans[1]);}return 0;
}




这篇关于1003.Xor Sum 1004.Labyrinth的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/464609

相关文章

最大流=最小割=最小点权覆盖集=sum-最大点权独立集

二分图最小点覆盖和最大独立集都可以转化为最大匹配求解。 在这个基础上,把每个点赋予一个非负的权值,这两个问题就转化为:二分图最小点权覆盖和二分图最大点权独立集。   二分图最小点权覆盖     从x或者y集合中选取一些点,使这些点覆盖所有的边,并且选出来的点的权值尽可能小。 建模:     原二分图中的边(u,v)替换为容量为INF的有向边(u,v),设立源点s和汇点t

如何导入sun.misc.BASE64Encoder和sum.misc.BASE64Decoder

右击项目名--->Build Path--->Configure Build Path...--->java Build Path--->Access rules:1 rule defined,added to all librar...   --->Edit --->Add...

18. 4 Sum

题目: 解答: 与之前的三数之和的解法类似,也是先排序,然后不断剔除不可能的条件,最后两个参数,通过两头求和计算得出。 代码: class Solution {public:vector<vector<int>> fourSum(vector<int>& nums, int target) {vector<vector<int>> result;int len = nums.size

apt-get update更新源时,出现“Hash Sum mismatch”问题

转载自:apt-get update更新源时,出现“Hash Sum mismatch”问题 当使用apt-get update更新源时,出现下面“Hash Sum mismatch”的报错,具体如下: root@localhost:~# apt-get update ...... ...... W: Failed to fetch http://us.archive.ubuntu.com/ub

[LeetCode] 303. Range Sum Query - Immutable

题:https://leetcode.com/problems/range-sum-query-immutable/description/ 题目 Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example: Given nums

[LeetCode] 64. Minimum Path Sum

题:https://leetcode.com/problems/minimum-path-sum/description/ 题目 Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers

[LeetCode] 404. Sum of Left Leaves

题:https://leetcode.com/problems/sum-of-left-leaves/description/ 题目 Find the sum of all left leaves in a given binary tree. Example: 3/ \9 20/ \15 7There are two left leaves in the binary t

数论 --- 费马小定理 + 快速幂 HDU 4704 Sum

Sum  Problem's Link:   http://acm.hdu.edu.cn/showproblem.php?pid=4704   Mean:  给定一个大整数N,求1到N中每个数的因式分解个数的总和。   analyse: N可达10^100000,只能用数学方法来做。 首先想到的是找规律。通过枚举小数据来找规律,发现其实answer=pow(2,n-1);

LeetCode - 40. Combination Sum II

40. Combination Sum II  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个待选集合s和一个数n,选出所有相加之和为n的组合.(每个元素只能选一次) analyse: 递归求解. 在递归进入

LeetCode - 39. Combination Sum

39. Combination Sum  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个待选集合s和一个数n,让你找出集合s中相加之和为n的所有组合.(每个数可选多次) analyse: 作此题需对递归有一定的