BZOJ4269: 再见Xor(线性基)
2018-06-17 20:27:28来源:未知 阅读 ()
Submit: 474 Solved: 291
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
3 5 6
Sample Output
HINT
Source
一眼线性基,取最大值是最基本的操作,就是一路异或过去,能变大就异或
次大值可以由最大值和最小值异或得到
// luogu-judger-enable-o2 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int MAXN = 1e5 + 10, B = 31; inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } int N, P[MAXN]; void Insert(int x) { for(int i = B; i >= 0; i--) { if(x >> i) { if(P[i]) x = x ^ P[i]; else {P[i] = x; return ;} } } } int QueryMax() { int ans = 0; for(int i = B; i >= 0; i--) if((ans ^ P[i]) > ans) ans = ans ^ P[i]; return ans; } int QueryMin() { for(int i = 0; i <= B; i++) if(P[i]) return P[i]; } main() { #ifdef WIN32 freopen("a.in", "r", stdin); #endif N = read(); for(int i = 1; i <= N; i++) { Insert(read()); } int Mx = QueryMax(), Mn = QueryMin(); printf("%d %d", Mx, Mx ^ Mn); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- The Xor-longest Path(trie树) 2019-08-16
- The XOR Largest Pair(tire树) 2019-08-16
- skkyk:题解 洛谷P2420 【让我们异或吧】lca+xor前缀和 2019-08-16
- 2017 ICPC网络赛(西安)--- Xor 2019-05-04
- Codeforces#498F. Xor-Paths(折半搜索) 2018-07-18
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash