历程

被暴打了

原因是钻进了 \(T4\) 的坑中。。。

先看完题,发现 \(T4\) 比较有意思,\(T2\) 没有想法

\(T3\) 挺容易,做法似乎很好想

\(T1\) 送分,十几分钟搞定

然后开 \(T4\),推了一下,明白题目需要我们干的事情

开码,发现修改与标记有些烦,然后标记打错了,一直调到 \(11\) 点

疯了!

还有 \(\text{45 min}\),只要忍痛弃了

看看 \(T3\),很好做,\(5 min\) 打完

有充满自信,放弃 \(T2\) 部分分,继续调 \(T4\)

但始终没有意识到一处标记的问题

导致比赛结束被暴打(更重要的是,暴力每题普遍 \(80,90pts\) !!神仙数据。。。)

\(\text{T1 1782. Travel}\)

这不 \(Floyd\) 预处理后分层最短路 \(spfa\) 啊!

正好复习最短路模板

$\text{Code}$

\(\text{Code}\)

#include <cstdio>
#include <queue>
#include <cstring>
#include <iostream>
#define RE register
using namespace std; const int N = 105, INF = 0x3f3f3f3f;
int n, m, q, G[N][N], vis[N][N], bz[N][15], f[N][15];
struct node{int x, k;};
queue<node> Q; void SPFA()
{
memset(f, INF, sizeof f), Q.push(node{1, 0}), f[1][0] = 0, bz[1][0] = 1;
while (!Q.empty())
{
node z = Q.front(); Q.pop();
for(RE int i = 1; i <= n; i++)
if (vis[z.x][i] && i ^ z.x)
{
int j = i, k = z.k, w = G[z.x][i];
if (!vis[i][z.x]) w *= 2, ++k;
if (k <= q && f[j][k] > f[z.x][z.k] + w)
{
f[j][k] = f[z.x][z.k] + w;
if (!bz[j][k]) Q.push(node{j, k}), bz[j][k] = 1;
}
}
bz[z.x][z.k] = 0;
}
} int main()
{
scanf("%d%d%d", &n, &m, &q), memset(G, INF, sizeof G);
for(RE int i = 1, x, y, z; i <= m; i++)
scanf("%d%d%d", &x, &y, &z), G[x][y] = min(G[x][y], z), vis[x][y] = 1;
for(RE int k = 1; k <= n; k++)
for(RE int i = 1; i <= n; i++)
if (i ^ k)
for(RE int j = 1; j <= n; j++)
if (j ^ i && j ^ k)
vis[i][j] = (vis[i][j] | (vis[i][k] && vis[k][j]));
SPFA();
int ans = INF;
for(RE int i = 1; i <= q; i++) ans = min(ans, f[n][i]);
if (ans == INF) ans = -1;
printf("%d\n", ans);
}

\(\text{T2 3337. wyl8899的TLE}\)

思考答案的产生

从 \(A\) 的首位, \(B\) 的某个位置开始,求 \(LCP\)

然后魔法地同时跳过一格(计入贡献),再求 \(LCP\)

答案取最大值即可

也就是说可以枚举 \(B\) 的开始位置,二分加哈希求 \(LCP\) 即可

思维真不高。。。

也算复习字符串基操吧

$\text{Code}$

\(\text{Code}\)

#include <cstdio>
#include <cstring>
#include <iostream>
#define RE register
#define IN inline
using namespace std;
typedef long long LL; const int N = 5e4 + 5, P1 = 1e9 + 7, P2 = 1e9 + 9, B = 29;
char s1[N], s2[N];
LL b1[N], b2[N]; struct Hash{
int n; LL p1[N], p2[N];
IN void init(char *s)
{
n = strlen(s + 1);
for(RE int i = 1; i <= n; i++)
p1[i] = (p1[i - 1] * B + s[i] - 'a') % P1, p2[i] = (p2[i - 1] * B + s[i] - 'a') % P2;
}
IN int get1(int l, int r){return (p1[r] - p1[l - 1] * b1[r - l + 1] % P1 + P1) % P1;}
IN int get2(int l, int r){return (p2[r] - p2[l - 1] * b2[r - l + 1] % P2 + P2) % P2;}
}h1, h2; IN int lcp(int l1, int l2)
{
int l = 0, r = min(h1.n - l1 + 1, h2.n - l2 + 1), mid = l + r >> 1, res = 0;
for(; l <= r; mid = l + r >> 1)
if ((h1.get1(l1, l1 + mid - 1) == h2.get1(l2, l2 + mid - 1))
&& (h1.get2(l1, l1 + mid - 1) == h2.get2(l2, l2 + mid - 1))) res = mid, l = mid + 1;
else r = mid - 1;
return res;
} int main()
{
b1[0] = b2[0] = 1;
for(RE int i = 1; i <= N - 3; i++) b1[i] = b1[i - 1] * B % P1, b2[i] = b2[i - 1] * B % P2;
scanf("%s%s", s1 + 1, s2 + 1), h1.init(s1), h2.init(s2);
int ans = 0;
for(RE int i = 1, len; i <= h2.n; i++)
ans = max(ans, (len = lcp(1, i)) + lcp(len + 2, i + len + 1) + (len < h1.n && i + len - 1 < h2.n));
printf("%d\n", ans);
}

\(\text{T3 3338. 法法塔的奖励}\)

考虑一个点的答案,显然由子树符合条件的 \(dp\) 值转来

发现是维护子树的问题,所以树上启发式合并加树状数组做到 \(O(n\log^2 n)\) 或者线段树合并做到 \(O(n\log n)\)

当然是打前者啦,跟打暴力一样一样的

$\text{Code}$

\(\text{Code}\)

#include <cstdio>
#include <iostream>
#define RE register
#define IN inline
using namespace std; const int N = 1e5 + 5;
int n, fa[N], a[N], h[N], tot, c[N];
int dfc, siz[N], dfn[N], rev[N], son[N], ans[N];
struct edge{int to, nxt;}e[N];
IN void add(int x, int y){e[++tot] = edge{y, h[x]}, h[x] = tot;} void dfs1(int x)
{
siz[x] = 1, dfn[x] = ++dfc, rev[dfc] = x;
for(RE int i = h[x]; i; i = e[i].nxt)
{
int v = e[i].to;
dfs1(v), siz[x] += siz[v];
if (siz[v] > siz[son[x]]) son[x] = v;
}
} IN int lowbit(int x){return x & (-x);}
IN void update(int x, int v){for(; x <= n; x += lowbit(x)) c[x] = max(c[x], v);}
IN void clear(int x){for(; x <= n; x += lowbit(x)) c[x] = 0;}
IN int query(int x)
{
int res = 0;
for(; x; x -= lowbit(x)) res = max(res, c[x]);
return res;
} void dfs2(int x, int kp)
{
for(RE int i = h[x]; i; i = e[i].nxt)
{
int v = e[i].to;
if (v == son[x]) continue;
dfs2(v, 0);
}
if (son[x]) dfs2(son[x], 1);
for(RE int i = h[x]; i; i = e[i].nxt)
{
int v = e[i].to;
if (v == son[x]){update(a[son[x]], ans[son[x]]); continue;}
for(RE int j = dfn[v]; j <= dfn[v] + siz[v] - 1; j++) update(a[rev[j]], ans[rev[j]]);
}
ans[x] = query(a[x]) + 1;
if (!kp) for(RE int i = dfn[x] + 1; i <= dfn[x] + siz[x] - 1; i++) clear(a[rev[i]]);
} int main()
{
scanf("%d", &n); int x; scanf("%d", &x);
for(RE int i = 2; i <= n; i++) scanf("%d", &fa[i]), add(fa[i], i);
for(RE int i = 1; i <= n; i++) scanf("%d", &a[i]);
dfs1(1), dfs2(1, 1);
for(RE int i = 1; i <= n; i++) printf("%d ", ans[i]);
}

\(\text{T4 3339. wyl8899和法法塔的游戏}\)

很容易想到 \(nim\) 游戏的结论:异或和为零为先手必败态

那么先求异或和,需要第一步取完后留给对手必败态,即 \((a_r-x) \oplus \text{others} = 0\)

需 \(x=a_r-\text{others}\) 最大化,可持久化 \(Trie\) 即可

但是需要支持修改操作,所以考虑分块加 \(Trie\)

注意打标记时的细节

$\text{Code}$

\(\text{Code}\)

#include <cstdio>
#include <cmath>
#include <iostream>
#define IN inline
#define RE register
using namespace std; const int N = 1e5 + 5, B = 319;
int n, m; struct DS{
int pos[N], block, a[N], tag[B], tr[N * 20][2], size, sum[N * 20], rt[B];
IN void init()
{
block = sqrt(n);
for(RE int i = 1; i <= n; i++) pos[i] = (i - 1) / block + 1;
}
IN void update(int p, int x, int v)
{
if (!rt[p]) rt[p] = ++size;
int u = rt[p];
for(RE int i = 10; i >= 0; i--)
{
int ch = (x >> i) & 1;
if (!tr[u][ch]) tr[u][ch] = ++size;
sum[u = tr[u][ch]] += v;
}
}
IN int query(int p, int v)
{
int u = rt[p], res = 0;
for(RE int i = 10; i >= 0; i--)
{
int ch = (v >> i) & 1;
if (sum[tr[u][ch]]) u = tr[u][ch];
else if (sum[tr[u][ch ^ 1]]) u = tr[u][ch ^ 1], res |= (1 << i);
}
return res;
}
IN int get(int x){return a[x] ^ tag[pos[x]] ^ a[x + 1] ^ tag[pos[x + 1]];}
IN void Modify(int r, int v)
{
int t = get(r), w = a[r] ^ (t - v) ^ tag[pos[r]] ^ a[r + 1] ^ tag[pos[r + 1]];
for(RE int i = r; i >= (pos[r] - 1) * block + 1; i--)
update(pos[r], a[i], -1), update(pos[r], a[i] ^= w, 1);
for(RE int i = 1; i < pos[r]; i++) tag[i] ^= w;
}
IN int Query(int l, int r, int v)
{
int res = N;
for(RE int i = l; i <= min(pos[l] * block, r); i++) res = min(res, a[i] ^ tag[pos[l]] ^ v);
if (pos[l] ^ pos[r])
for(RE int i = (pos[r] - 1) * block + 1; i <= r; i++) res = min(res, a[i] ^ tag[pos[r]] ^ v);
for(RE int i = pos[l] + 1; i < pos[r]; i++) res = min(res, query(i, v ^ tag[i]));
return res;
}
}T; int main()
{
scanf("%d", &n);
for(RE int i = 1; i <= n; i++) scanf("%d", &T.a[i]);
T.init();
for(RE int i = n; i; i--) T.a[i] ^= T.a[i + 1], T.update(T.pos[i], T.a[i], 1);
scanf("%d", &m);
for(RE int i = 1, ed, L, R; i <= m; i++)
{
scanf("%d%d%d", &ed, &L, &R);
int ans = T.get(ed) - T.Query(L, R, T.a[ed] ^ T.tag[T.pos[ed]]);
if (ans <= 0) ans = -1;
if (ans != -1) T.Modify(ed, ans);
printf("%d\n", ans);
}
}

可见这套题挺简单的,但是考场要分配好时间,避免陷入一处坑很久导致意外或者“正常”死亡

JZOJ 2022.07.06【提高组A】模拟的更多相关文章

  1. 2018.12.30【NOIP提高组】模拟赛C组总结

    2018.12.30[NOIP提高组]模拟赛C组总结 今天成功回归开始做比赛 感觉十分良(zhōng)好(chà). 统计数字(count.pas/c/cpp) 字符串的展开(expand.pas/c ...

  2. 2018.12.08【NOIP提高组】模拟B组总结(未完成)

    2018.12.08[NOIP提高组]模拟B组总结 diyiti 保留道路 进化序列 B diyiti Description 给定n 根直的木棍,要从中选出6 根木棍,满足:能用这6 根木棍拼出一个 ...

  3. JZOJ 5185. 【NOIP2017提高组模拟6.30】tty's sequence

    5185. [NOIP2017提高组模拟6.30]tty's sequence (Standard IO) Time Limits: 1000 ms  Memory Limits: 262144 KB ...

  4. JZOJ 5196. 【NOIP2017提高组模拟7.3】B

    5196. [NOIP2017提高组模拟7.3]B Time Limits: 1000 ms  Memory Limits: 262144 KB  Detailed Limits   Goto Pro ...

  5. JZOJ 5197. 【NOIP2017提高组模拟7.3】C

    5197. [NOIP2017提高组模拟7.3]C Time Limits: 1000 ms  Memory Limits: 262144 KB  Detailed Limits   Goto Pro ...

  6. JZOJ 5195. 【NOIP2017提高组模拟7.3】A

    5195. [NOIP2017提高组模拟7.3]A Time Limits: 1000 ms  Memory Limits: 262144 KB  Detailed Limits   Goto Pro ...

  7. JZOJ 5184. 【NOIP2017提高组模拟6.29】Gift

    5184. [NOIP2017提高组模拟6.29]Gift (Standard IO) Time Limits: 1000 ms  Memory Limits: 262144 KB  Detailed ...

  8. Vigenère密码 2012年NOIP全国联赛提高组(字符串模拟)

    P1079 Vigenère 密码 题目描述 16 世纪法国外交家 Blaise de Vigenère 设计了一种多表密码加密算法――Vigenère 密 码.Vigenère 密码的加密解密算法简 ...

  9. 等价表达式 2005年NOIP全国联赛提高组(栈模拟)

    P1054 等价表达式 题目描述 明明进了中学之后,学到了代数表达式.有一天,他碰到一个很麻烦的选择题.这个题目的题干中首先给出了一个代数表达式,然后列出了若干选项,每个选项也是一个代数表达式,题目的 ...

  10. 2017.07.06【NOIP提高组】模拟赛B组

    Summary 今天比赛感觉题目很奇葩,都可以用许多简单方法来做,正确性都显然,当然也有点水,也就是说是考我们的数感和数学知识,而程序,只是代码的体现. 这次的时间安排感觉不错,因为很快就打完最后一道 ...

随机推荐

  1. esp-01和esp-01s烧录固件和程序

    准备工具 USB-TTL 杜邦线若干 esp-01s烧录固件 我烧录的固件是 micropython, 使用的软件是 uPyCraft esp-01s烧录固件接线方法: esp-01s usb-ttl ...

  2. 社论 22.10.14 区间在线去重k小

    浅谈区间在线去重k小 关于讨论 https://www.luogu.com.cn/discuss/509205 本文将描述一种分块做法以及讨论中提出的各种 \(O(n \ \text{polylog} ...

  3. Go语言Golang DevOps运维开发实战

    Go语言Golang DevOps运维开发实战 提高运维意识.从下到上,从上到下的工作都要做好,对上运维工作的价值和含金量可以得到认可,对下我们的工作能够提高效率解放运维.运维意识是很重要,并不是你技 ...

  4. 软件开发架构、构架趋势、OSI七层协议

    目录 软件开发架构 构架总结 网络编程前戏 OSI七层协议简介 OSI七层协议值之物理连接层 OSI七层协议之数据链层 网络相关专业名词 OSI七层协议之网络层 IP协议: IP地址特征: IP地址分 ...

  5. IntelliJ IDEA中我最爱的10个快捷操作

    前言 欢迎关注微信公众号「JAVA旭阳」交流和学习 IntelliJ IDEA提供了一些Java的快捷键,同样也可以帮助我们提高日常的开发效率.关于这些快捷操作,你知道那几个呢? 1. psvm/ma ...

  6. python 学生管理系统 文件版 增删改查

    # 在程序开始之前完成数据的读取 # 存在着循环 # 循环的内容 # 将操作内容分解为函数 def sel_student(students_list): """ 查看所 ...

  7. [OpenCV实战]41 嵌入式计算机视觉设备选择

    文章目录 1 简介 1.1 深度学习与传统计算机视觉 1.2 性能考量 1.3 社区支持 2 结论 3 参考 在计算机视觉领域中,不同的场景不同的应用程序需要不同的解决方案.在本文中,我们将快速回顾可 ...

  8. JUC源码学习笔记5——1.5w字和你一起刨析线程池ThreadPoolExecutor源码,全网最细doge

    源码基于JDK8 文章1.5w字,非常硬核 系列文章目录和关于我 一丶从多鱼外卖开始 话说,王多鱼给好友胖子钱让其投资,希望亏得血本无归.胖子开了一个外卖店卖国宴,主打高端,外卖小哥都是自己雇佣,并且 ...

  9. 安装pytorch-gpu的经验与教训

    首先说明 本文并不是安装教程,网上有很多,这里只是自己遇到的一些问题 我是以前安装的tensorflow-gpu的,但是发现现在的学术论文大部分都是用pytorch复现的,因此才去安装的pytorch ...

  10. react 高效高质量搭建后台系统 系列 —— 登录

    其他章节请看: react 高效高质量搭建后台系统 系列 登录 本篇将完成登录模块.效果和 spug 相同: 需求如下: 登录页的绘制 支持普通登录和LDAP登录 登录成功后跳转到主页,没有登录的情况 ...