摘要: 高精度 +-*/ 高精加模板 // C = A + B, A >= 0, B >= 0 vector <int> add(vector <int> &A, vector <int> &B) { if (A.size() < B.size()) return add(B, A); vector<int 阅读全文
posted @ 2024-09-25 22:27 DomiSun 阅读(16) 评论(0) 推荐(0)
摘要: map #include <bits/stdc++.h> //map的基本操作如下 using namespace std; int main() { // 构造函数 map <string,int> dict; // 下标类型 存储的值的类型 // 插入数据的三种方式 dict.insert(pa 阅读全文
posted @ 2024-09-25 12:09 DomiSun 阅读(27) 评论(0) 推荐(0)
/* 点击爆炸效果*/