1 需要解决的问题 复数运算 class Complex { public: int a; int b; }; int main() { Complex c1 = {1,2}; Complex c2 = {3,4}; Compelx c3 = c1 + c2; //error: no match f ...
分类:
其他好文 时间:
2020-09-24 21:59:44
阅读次数:
51
1046 Shortest Distance (20分) #include<stdio.h> #include<iostream> using namespace std; int main() { int length[100100]; int n,n2,num=0; int c1,c2; sca ...
分类:
其他好文 时间:
2020-09-18 03:18:51
阅读次数:
29
1003 Emergency (25分) #include<stdio.h> #include<iostream> using namespace std; const int maxn=1010; const int INF=1000000000; int n,m,c1,c2; int G[max ...
分类:
其他好文 时间:
2020-09-17 23:33:09
阅读次数:
34
题目描述 输入两个链表,找出它们的第一个公共节点。 如下面的两个链表: 在节点 c1 开始相交。 示例 1: 输入:intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skipA = 2, skipB = 3 输出:Refere ...
分类:
其他好文 时间:
2020-08-10 19:51:47
阅读次数:
76
"""给你 k 种面值的硬币,面值分别为 c1, c2 ... ck,每种硬币的数量无限,再给一个总金额 amount,问你最少需要几枚硬币凑出这个金额,如果不可能凑出,算法返回 -1 。算法的函数签名如下:"""coins = [1, 2, 5]money = 11def coin_change( ...
分类:
编程语言 时间:
2020-08-10 09:27:18
阅读次数:
113
博客效果代码 记得申请js 博客主题:simplememory 页面定制CSS代码 /*simplememory*/ #google_ad_c1, #google_ad_c2 {display:none;} .syntaxhighlighter a, .syntaxhighlighter div, ...
分类:
其他好文 时间:
2020-07-29 21:32:37
阅读次数:
76
>> >> a1 = 100 a1 = 100 >> b1=9801 b1 = 9801 >> >> c1 = a1/b1 c1 = 0.0102 >> >> format long >> c1 = a1/b1 c1 = 0.010203040506071 >> ...
分类:
其他好文 时间:
2020-07-28 14:05:43
阅读次数:
88
题目描述: 输入两个链表,找出它们的第一个公共节点。 如下面的两个链表: 在节点 c1 开始相交。 示例 1: 输入:intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skipA = 2, skipB = 3输出:Refere ...
分类:
其他好文 时间:
2020-07-27 15:58:34
阅读次数:
65
import numpy as np 若想在向量pos_c后面添加lneg-lpos个零元素,可以执行: np.pad(pos_c,(0,lneg-lpos),'constant') 若想将向量c1和向量c2连接到一起,可以执行: np.concatenate([c1,c2]) ...
分类:
编程语言 时间:
2020-07-21 22:44:37
阅读次数:
90
反正对今天是无言。。。 Description 给出一个N行3列非负整数矩阵的各行各列之和,统计有多少个矩阵满足此条件。输出答案模10^17的值。 Input 第一行包含四个正整数N,c1, c2, c3,即行数与三列之和。第二行包含N个正整数,即各行三个数之和。每行每列之和均不超过125。 Out ...
分类:
其他好文 时间:
2020-07-20 22:27:01
阅读次数:
68