CF1480A Yet Another String Game Problem 给出一个字符串,两人轮流操作,每次操作可以将一个字符改为另外一个字符,当不可以不改动,先手目标是让最终字符串字典序最小,后手目标相反,求最终字符串。 Sol 贪心地模拟即可。 #define in read() int ...
分类:
其他好文 时间:
2021-02-15 12:23:09
阅读次数:
0
https://codeforces.com/contest/1473/problem/E vector存图: 1 #define bug(x) cout<<#x<<" is "<<x<<endl 2 #define IO std::ios::sync_with_stdio(0),cin.tie(0 ...
分类:
其他好文 时间:
2021-02-15 12:17:20
阅读次数:
0
https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:
其他好文 时间:
2021-02-15 11:53:52
阅读次数:
0
https://www.acwing.com/problem/content/1133/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:
其他好文 时间:
2021-02-15 11:53:38
阅读次数:
0
https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:
其他好文 时间:
2021-02-15 11:53:26
阅读次数:
0
flask版本0.12.5 运行时会报以上错误,原因是因为werkzeug的版本大于等于1.x版本。 解决办法,降低werkzeug的版本即可 pip uninstall Werkzeug pip install Werkzeug==0.16.1 ...
分类:
其他好文 时间:
2021-02-15 11:52:49
阅读次数:
0
the Computing Research Repository (CoRR) 论文地址:https://arxiv.org/abs/1909.11898 代码地址:https://github.com/hongwang600/DocRed Abstract 在本文中,我们进一步应用预先训练的语言 ...
分类:
其他好文 时间:
2021-02-10 13:32:54
阅读次数:
0
CentOS 7 引导顺序: UEFi或BIOS初始化,运行POST开机自检(可扩展固件接口负责加电自检(POST)、联系操作系统以及提供连接操作系统与硬件的接口。) 选择启动设备 引导装载程序, centos7是grub2 加载装载程序的配置文件:/etc/grub.d/、/etc/default ...
分类:
其他好文 时间:
2021-02-10 13:31:21
阅读次数:
0
Security and Cryptography in Python - Block Cipher(2) Double DES from pyDes import * import random message = "01234567" key_11 = random.randrange(0, 2 ...
分类:
编程语言 时间:
2021-02-10 13:31:04
阅读次数:
0
标题 多级标题###······ 字体 斜体 字 倾.+字+* 粗体 字 ** +字+** 划线 字 ~~ +字+~~ 引用 zi +字 分割线 图片 ![]( 0反括号 超链接 我的博客 []+() 列表 -[空格]或*[空格]或+[空格] 数字.[空格] b d d 表格 字zi? 1 2 3 ...
分类:
其他好文 时间:
2021-02-10 12:59:24
阅读次数:
0