totaled
totaled
全部文章
leetcode
atcoder(1)
codeforces(6)
Linux(5)
操作系统(2)
数据结构(7)
未归档(1)
算法(23)
网络编程(1)
计算机网络(5)
题解(84)
归档
标签
去牛客网
登录
/
注册
qin_peng
O_O
全部文章
/ leetcode
(共1篇)
leetcode.1354. 多次求和构造目标数组
1354. 多次求和构造目标数组 堆,数学。 inline int gcd(int a,int b){ return b?gcd(b,a%b):a; } class Solution { public: typedef long long ll; bool isPossibl...
数学
2020-02-18
0
622