思路 两次bfs找出树的直径并处理出端点离树上各叶子节点的距离,在直径上找一点使得dis(p1,p2) + dis(p2,p3) + dis(p1,p3)最大 易知上式是路径实长的两倍 1 #include <bits/stdc++.h> 2 #define dbg(x) cout << #x << ...
分类:
其他好文 时间:
2020-02-20 10:07:36
阅读次数:
52
vue中加载three.js的gltf模型 一、开始引入three.js相关插件。首先利用淘宝镜像,操作命令为: cnpm install three //npm install three也行 二、three.js中所有的控件插件,都可以在node_modules下面的three里面找到 三、安装 ...
分类:
Web程序 时间:
2020-02-18 14:38:06
阅读次数:
517
转跳点:🐏 1001 A+B Format (20分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by comm ...
分类:
其他好文 时间:
2020-02-18 11:26:13
阅读次数:
89
1.题目描述 英文版: Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the su ...
分类:
其他好文 时间:
2020-02-18 09:54:23
阅读次数:
55
Special Pythagorean triplet A Pythagorean triplet is a set of three natural numbers, $a using namespace std; int main() { for (int i = 1; i <= 1000/3; ...
分类:
其他好文 时间:
2020-02-17 20:11:32
阅读次数:
107
传送门 A. Three Strings 题意:给三个长为n字符串a,b,c,需对字符串每一位都进行操作: i (1 ≤ i ≤ n ),ci?aior ci?bi,问是否能让a与b相等。 思路:对于每个i(1≤i≤n),其中n是字符串的长度。 如果ci等于ai,我们可以用bi交换它;如果ci等于b ...
分类:
其他好文 时间:
2020-02-16 17:58:08
阅读次数:
58
A. Three Strings【思维】 题意:给你三个串a,b,c,对于串的每一个字符i,必须进行以下操作:swap(a_i,c_i)或者swap(b_i,c_i),问是否存在操作方案使得操作完之后使得ab串相等 题解:判断是否存在a_i,b_i同时不等于c_i的情况 #include<iostr ...
分类:
其他好文 时间:
2020-02-14 18:16:27
阅读次数:
85
A. Three Strings #include<iostream> #include<algorithm> using namespace std; int main(){ int t; scanf("%d",&t); while(t--){ string a,b,c; cin>>a>>b>>c ...
分类:
其他好文 时间:
2020-02-14 18:10:32
阅读次数:
119
github地址:https://github.com/gdsestimating/three-dxfThree-Dxf是一个浏览器dxf文件查看器应用,其使用https://github.com/gdsestimating/dxf-parser解析dxf文件(解析出json格式),并使用three ...
分类:
Web程序 时间:
2020-02-14 16:21:57
阅读次数:
616
44 TCP 协议详解 TCP 协议 传输控制协议, Transmission Control Protocol,其功能包括:传输;控制 传输包括:建立连接、关闭连接、保证可靠 建立连接:三次握手 三次握手(Three-Way Handshake)即建立TCP连接,就是指建立一个TCP连接时,需要客 ...
分类:
其他好文 时间:
2020-02-13 16:55:35
阅读次数:
78