摘要: 大整数专题 一、大整数加法 (1) 如何输入大整数 用string 类存大整数,之后用数组来存大整数的每一位 vector stl容器 —— 向量 vector, 变长数组,倍增的思想 size() 返回元素个数 empty() 返回是否为空 clear() 清空 front()/back() pu 阅读全文
posted @ 2020-11-27 12:15 Hoppz 阅读(347) 评论(0) 推荐(0) 编辑
摘要: Codeforces Round #686 (Div. 3) Codeforces Round #686 A.Special Permutation 水题 直接先输出2-n,在输出1 #include <bits/stdc++.h> using namespace std; int main() { 阅读全文
posted @ 2020-11-27 01:37 Hoppz 阅读(75) 评论(0) 推荐(0) 编辑