CF1101
D:题意:树上每个顶点有个权值,求最长链,满足链上gcd > 1
解:对每个质数建虚树,每个点只会拆成log个点,所以是log2的。
#include <bits/stdc++.h> const int N = ; struct Edge {
int nex, v, len;
}edge[N << ], EDGE[N << ]; int tp, TP; int p[N], top, e[N], pos2[N], num2, ST[N << ][], pw[N << ], n, ans, id[N], last[N];
int vis[N];
int imp[N], K, E[N], val[N], fa[N], d[N], stk[N], use[N], Time, RT, f[N];
std::vector<int> v[N]; inline void add(int x, int y) {
tp++;
edge[tp].v = y;
edge[tp].nex = e[x];
e[x] = tp;
return;
} inline void ADD(int x, int y) {
TP++;
EDGE[TP].v = y;
EDGE[TP].len = d[y] - d[x];
EDGE[TP].nex = E[x];
E[x] = TP;
return;
} inline void getp(int n) {
for(int i = ; i <= n; i++) {
if(!vis[i]) {
p[++top] = i;
last[i] = i;
id[i] = top;
}
for(int j = ; j <= top && i * p[j] <= n; j++) {
vis[i * p[j]] = ;
last[i * p[j]] = p[j];
if(i % p[j] == ) break;
}
}
return;
} void DFS_1(int x, int f) {
fa[x] = f;
d[x] = d[f] + ;
pos2[x] = ++num2;
ST[num2][] = x;
for(int i = e[x]; i; i = edge[i].nex) {
int y = edge[i].v;
if(y == f) {
continue;
}
DFS_1(y, x);
ST[++num2][] = x;
}
return;
} inline void prework() {
for(int i = ; i <= num2; i++) pw[i] = pw[i >> ] + ;
for(int j = ; j <= pw[num2]; j++) {
for(int i = ; i + ( << j) - <= num2; i++) {
if(d[ST[i][j - ]] < d[ST[i + ( << (j - ))][j - ]])
ST[i][j] = ST[i][j - ];
else
ST[i][j] = ST[i + ( << (j - ))][j - ];
}
}
return;
} inline int lca(int x, int y) {
x = pos2[x];
y = pos2[y];
if(x > y) std::swap(x, y);
int t = pw[y - x + ];
if(d[ST[x][t]] < d[ST[y - ( << t) + ][t]])
return ST[x][t];
else
return ST[y - ( << t) + ][t];
} inline bool cmp(const int &a, const int &b) {
return pos2[a] < pos2[b];
} inline void work(int x) {
if(use[x] != Time) {
use[x] = Time;
f[x] = ;
E[x] = ;
}
return;
} inline void build_t() {
std::sort(imp + , imp + K + , cmp);
TP = top = ;
work(imp[]);
stk[++top] = imp[];
for(int i = ; i <= K; i++) {
int x = imp[i], y = lca(x, stk[top]);
work(x); work(y);
while(top > && pos2[y] <= pos2[stk[top - ]]) {
ADD(stk[top - ], stk[top]);
top--;
}
if(y != stk[top]) {
ADD(y, stk[top]);
stk[top] = y;
}
stk[++top] = x;
}
while(top > ) {
ADD(stk[top - ], stk[top]);
top--;
}
RT = stk[top];
return;
} void DFS(int x) {
int a = , b = ;
for(int i = E[x]; i; i = EDGE[i].nex) {
int y = EDGE[i].v;
DFS(y);
if(EDGE[i].len > ) continue;
if(f[y] > a) {
b = a;
a = f[y];
}
else b = std::max(b, f[y]);
}
if(vis[x] == Time) {
ans = std::max(ans, a + b + );
f[x] = a + ;
}
return;
} int main() {
getp(N - );
memset(vis, , sizeof(vis));
int tot = top, flag = ; scanf("%d", &n);
for(int i = ; i <= n; i++) {
scanf("%d", &val[i]);
int x = val[i];
if(x > ) flag = ;
while(x > ) {
int y = last[x];
while(x % y == ) {
x /= y;
}
v[id[y]].push_back(i);
}
}
for(int i = , x, y; i < n; i++) {
scanf("%d%d", &x, &y);
add(x, y); add(y, x);
} if(flag) {
puts("");
return ;
} DFS_1(, );
prework(); for(int i = ; i <= tot; i++) {
K = ;
++Time;
for(int j = ; j < (int)v[i].size(); j++) {
imp[++K] = v[i][j];
vis[v[i][j]] = Time;
}
build_t();
DFS(RT);
} printf("%d \n", ans);
return ;
}
AC代码
G:题意:给定序列,你要把它分成尽可能多的几段,每段的权值是异或和。
要求没有哪些段的权值异或和为0。输出最大段数。无解-1。
解:考虑无解,肯定是总异或和为0。否则一定存在解。
发现这个东西,其实等价于选出一些前缀,因为异或可以抵消,所以这些前缀能表示出的和这些段能表示出的是相同的。
然后就把前缀插入线性基,看能插入多少个。
看到异或就要想线性基。
#include <bits/stdc++.h> const int N = ; int b[], a[N]; inline int insert(int x) {
for(int i = ; i >= && x; i--) {
if(((x >> i) & ) == ) continue;
if(b[i]) x ^= b[i];
else {
b[i] = x;
return ;
}
}
return ;
} int main() { int n;
scanf("%d", &n);
for(int i = ; i <= n; i++) {
scanf("%d", &a[i]);
a[i] ^= a[i - ];
} if(!a[n]) {
printf("-1\n");
return ;
} int cnt = ;
for(int i = n; i >= ; i--) {
cnt += insert(a[i]);
} printf("%d \n", cnt);
return ;
}
AC代码
CF1101的更多相关文章
随机推荐
- Vue 中提示报错 handlers[i].call is not a function解决方法
Vue 中提示警告 TypeError: handlers[i].call is not a function at callHook (vue.esm.js?a026:2921) at Object ...
- JS学习笔记 等于和包装对象
严格等于 a===b 首先判断两边数据的类型,若类型不同,返回false. 若类型相同(1.2和1.2,字符串相等指内容和长度都是一样的),返回true null===null undefined== ...
- 非关系型数据库----MongoDB
一.什么是MongoDB? MongoDB 是由C++语言编写的,是一个基于分布式文件存储的开源数据库系统. 在高负载的情况下,添加更多的节点,可以保证服务器性能. MongoDB 旨在为WEB应用提 ...
- python爬虫之git的安装
一.初始 1.发展历史 *最开始没有对代码的管理,导致很多东西混乱和丢失. *后来大家想了一个办法,用最简单最笨的方法,各种复制文件夹. *然后就出现了版本控制的工具. 1.单机版:RCS(198 ...
- drf图片字段序列化完整路径
一.需求 前端需要它想要的数据格式: 原有的数据格式: 二.定制化: 1.可以嵌套序列化pol_type,lit_des,area_detail,但结构如下: class ChrDetailSeria ...
- linux audit审计(3)--audit服务配置
audit守护进程可以通过/etc/audit/auditd.conf文件进行配置,默认的auditd配置文件可以满足大多数环境的要求. local_events = yes write_logs = ...
- DAY06、元组、字典、集合
一.元组 1.定义:参数为for可以循环的对象 t1 = (1, 2) t2 = tuple((1, 2)) t3 = (1, ) #定义一个只有一个值的元组 2.常用操 ...
- Java中的super()使用注意
1)super(参数):调用基类中的某一个构造函数(应该为构造函数中的第一条语句)2)this(参数):调用本类中另一种形成的构造函数(应该为构造函数中的第一条语句)3)super: 它引用当前对象的 ...
- Windows上安装 TensorFlow及简单命令
1.官网及帮助文档 官网: https://www.tensorflow.org/install/install_windows 中文帮助文档:https://efeiefei.gitbooks.io ...
- 使用javaWeb的二大(Listener、Filter)组件实现分IP统计访问次数
分析: 统计工作需要在所有资源之前都执行,那么就可以放到Filter中. 我们这个过滤器不打算做拦截操作!因为我们只是用来做统计 用什么东西来装载统计的数据.Map<String,Integer ...