UtroYAKQ
UtroYAKQ
全部文章
题解
归档
标签
去牛客网
登录
/
注册
UtroYAKQ的博客
全部文章
/ 题解
(共2篇)
题解 | #找到数字#
C题推导结论过程 假设ABC为x,为方便表示,A表示为最低位,B位中间位,C位最高位,len表示B的位数 eg:ABC = 114514 ,A = 1, B = 1451 , C = 4,len = 4. ABC可以表示为 A + B * pow(10,1) + C * pow(10,len + ...
C++
2024-05-18
13
278
题解 | #I Love ACM!#
map+并查集 #include<bits/stdc++.h> using namespace std; map<string,string>mp; string find(string x){ return mp[x]==x?mp[x]:mp[x]=find(mp...
C++
字符串
2024-05-08
1
173