Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:
其他好文 时间:
2021-02-08 12:29:55
阅读次数:
0
1 #include<iostream> 2 #include<cstdio> 3 #include<cstdlib> 4 #include<algorithm> 5 using namespace std; 6 7 int n,tot,a[1010],c[1010]; 8 9 int main() ...
分类:
其他好文 时间:
2021-02-06 12:13:59
阅读次数:
0
参考: https://ai.googleblog.com/2018/04/mobilenetv2-next-generation-of-on.html https://heartbeat.fritz.ai/real-time-object-detection-using-ssd-mobilenet ...
分类:
Web程序 时间:
2021-02-06 11:59:11
阅读次数:
0
1 CF1409E 两个平台 题目链接:https://codeforces.com/problemset/problem/1409/e 2 题目描述 平面上有 \(n\) 个点。第 \(i\) 点的坐标是 \((x_i, y_i)\)。你有两个长度为 \(k\) 的水平平台。每个平台可以放置在平面 ...
分类:
其他好文 时间:
2021-02-06 11:47:59
阅读次数:
0
LinkedHashMap<String,User> result = //方法一 map.entrySet().stream() //根据User中某个字段进行排序 .sorted(Map.Entry.comparingByValue( //若为Map<String,String>,则不需要下面这 ...
分类:
编程语言 时间:
2021-02-06 11:44:18
阅读次数:
0
import socketfrom threading import Threadserver = socket.socket(socket.AF_INET,socket.SOCK_STREAM)server.bind(('127.0.0.1',8080))server.listen(5)# def ...
分类:
其他好文 时间:
2021-02-02 10:39:57
阅读次数:
0
原题链接 考察:容斥原理 错误思路: 枚举预处理每一个数C4n 的组合数,将p数组的每一个数求约数集合,将约数个数>=4的纳入容斥的集合内.再用容斥计数解决. 时间复杂度是10000*100*2出现次数>=4的约数个数 ,前面的时间复杂度已经到了1e6,如果个数>7就已经有超时风险,更不要说总共10 ...
分类:
其他好文 时间:
2021-02-01 12:59:29
阅读次数:
0
A: Takahashi和Aoki分别有A和B颗糖果,两人轮流吃一个,若C为0则Takahashi先吃,C为1则Aoki先吃,先吃完的为输。 1 #include <iostream> 2 #include <cstdio> 3 #include <vector> 4 #include <algor ...
分类:
其他好文 时间:
2021-02-01 12:36:03
阅读次数:
0
一、复制git地址; 克隆; 二、创建分支; #获取远程所有分支 git branch -r #从远程master分支检出本地分支 git checkout -b songlingling origin/master #查看本地所有分支 git branch #查看本地文件修改状态 git stat ...
分类:
其他好文 时间:
2021-02-01 12:19:04
阅读次数:
0
#include<iostream> #include<stack> #include<vector> #include<cstring> using namespace std; int n; char s1[10], s2[10]; vector<int> p; //记录顺序 stack<cha ...
分类:
其他好文 时间:
2021-01-30 11:54:10
阅读次数:
0