摘要: 高精度加法 #include <bits/stdc++.h> using namespace std; string s1,s2; int main() { string s1,s2; cin>>s1>>s2; int i,j; int a[20050],b[20050]; memset(a,0,s 阅读全文
posted @ 2020-07-17 20:57 Drophair 阅读(123) 评论(0) 推荐(0)
摘要: 识别 Time Limit: 1 Sec Memory Limit: 256 MB Submission:12 AC:11 Score:100 Submit Description DD 现在有一个长度为 n 的字符串,DD 认为如果所有长度为 x 的子串互不重复,则 x 这个值是可识别的,他现在想 阅读全文
posted @ 2020-07-17 16:21 Drophair 阅读(188) 评论(0) 推荐(0)
摘要: 采用分治思想 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; double a,b,c,d; double f(double x) { return 阅读全文
posted @ 2020-07-17 12:39 Drophair 阅读(181) 评论(0) 推荐(0)