Bernard5
Bernard5
全部文章
分类
作业(2)
学习笔记(17)
技术教程(45)
期末应试(57)
未归档(17)
赛后分析(7)
题解(132)
题集(15)
归档
标签
去牛客网
登录
/
注册
some model useful
我亦是行人
TA的专栏
160篇文章
0人订阅
算法竞赛之路
160篇文章
3597人学习
全部文章
(共290篇)
计算机网络 Page179P5
初始表 结点u的表: 从/到 u v x y z u 0 1 ∞ 2 ∞ v ∞ ∞ ∞ ∞ ∞ y ∞ ∞ ∞ ∞ ∞ 结点v的表: 从/到 u v x y z u ∞ ∞ ∞ ∞ ∞ v 1 0 3 ∞ 6 x ∞ ∞ ∞ ∞ ∞ z ∞ ...
2021-12-23
1
461
算法竞赛代码模板
{ // Place your snippets for cpp here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is w...
2021-11-03
0
349
题解 | #向上取整#
来自专栏
本题是一道构造题,考察思维。构造方案不唯一,我来讲讲我的思路。 对于任意两个相邻的数i,i+1{i,i+1}i,i+1来说,如果让左边的数成为被除数,右边的数成为除数,那么一定可以让左边的数变成111 如果这样一直推下去,可以让除了最后一个数以外的其他所有数都变成1,但这样最后一个数n{n}n就动...
2021-10-14
0
506
D. Xor of 3
来自专栏
>>> 0^0^0 0 >>> 0^0^1 1 >>> 0^1^1 0 >>> 1^1^1 1 整个数列异或和为0时,无解 奇数乱搞 偶数长度时,将问题拆解成两个奇数长度且偶数xor和 #include <bits/st...
2021-09-24
0
546
桶 贪心 B. Swaps Codeforces Round #743 (Div. 2)
来自专栏
对于每个a[i] 找第一个大于它的b[j] 用桶找 亦可线段树 #include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%lld\n"...
2021-09-24
0
649
贪心 思维 B. Combinatorics Homework Edu CF Round 114 (Div. 2)
来自专栏
题意 有a个字符A,b个字符B,c个字符C 需要构造恰好m个相邻位置相同的pair的字符串 exactly m pairs of adjacent equal letters (exactly m such positions i that the i-th letter is equal to t...
2021-09-24
0
607
cpp debug json 配置
launch.json { "version": "0.2.0", "configurations": [ { "name": "C++ Launch (...
2021-09-22
0
458
The Strongest Build 暴搜
#include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%lld\n", (x)) #define rep(i, l, r) for ...
2021-09-21
0
479
模拟退火
来自专栏
#include <bits/stdc++.h> #define sc(x) scanf("%lld", &(x)) #define pr(x) printf("%lld\n", (x)) #define rep(i, l, r) for ...
模拟退火
2021-08-18
0
535
GCD GAME 签到 nim博弈
来自专栏
考虑nim博弈:n堆石子,没人每次取任意一堆的任意数量的石子,问谁能赢,对于这样的问题,我们把所有堆的石子数异或起来,只要不为0,先手必胜。 本题就是一个小小的转化:每堆石子数就是其因数个数。 #include <bits/stdc++.h> #define sc(x) scanf(&q...
2021-08-13
0
520
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页