UVA679.小球下落 A number of K balls are dropped one by one from the root of a fully binary tree structure FBT. Each time the ball being dropped first visi ...
分类:
其他好文 时间:
2020-05-26 00:56:03
阅读次数:
58
request封装 import requests class RequestsHandler: def __init__(self): self.session = requests.Session() def visit(self, url, method, params=None, data= ...
分类:
其他好文 时间:
2020-05-18 22:26:42
阅读次数:
64
http://www.tzcoder.cn/acmhome/problemdetail.do?&method=showdetail&id=3613 算出两两之间min距离,然后从起点开始循环时间点,到的了的地方进队 #include<bits/stdc++.h> using namespace st ...
分类:
其他好文 时间:
2020-05-16 10:55:49
阅读次数:
64
解决方案: class Gra(object): def __init__(self): self.order = [] self.neighboor = {} self.visit = {} def _dfs_visit_(self, u): if u in self.neighboor: for ...
分类:
编程语言 时间:
2020-05-10 12:47:05
阅读次数:
58
https://leetcode-cn.com/problems/zhan-de-ya-ru-dan-chu-xu-lie-lcof/ 这个题如果借栈来做的话,简直就是秒杀,但是我这里用了一个不借助栈的方法来实现。 class Solution { public boolean validateSt ...
分类:
其他好文 时间:
2020-05-05 19:44:37
阅读次数:
56
#include "stdafx.h" #include <iostream> #include <string> #include <map> #include <list> #include <queue> #include <stack> typedef struct forest { std ...
分类:
其他好文 时间:
2020-05-04 19:35:37
阅读次数:
47
SPFA(Shortest Path Faster Algorithm)算法,是西南交通大学段凡丁于 1994 年发表的,其在 Bellman ford 算法的基础上加上一个队列优化,减少了冗余的松弛操作,是一种高效的最短路算法。 算法过程 设立一个队列用来保存待优化的顶点,优化时每次取出队首顶点 ...
分类:
编程语言 时间:
2020-05-03 15:05:16
阅读次数:
72
不很久不很久以前 据说某家公司有两位前端,天天撸bug,为啥嘞?只怪测试MM倾人国,轻语哥哥有bug。?(??????)?? 可是最近两位有点犯愁 Σ(っ °Д °;)っ。测试MM有几次提了紧急bug,都在旁边鼓励他们改bug了,可是线上bug重现排查比较麻烦,而且改了后还发现没改好,惹得测试MM潸 ...
分类:
其他好文 时间:
2020-04-30 23:31:23
阅读次数:
396
欧拉筛求素数模版 public class Prime { //欧拉筛的时间复杂度O(n),每个数只筛一次,使用最小的质因子去筛 [埃氏筛法有重复筛同一个数,时间复杂度为O(n*log(log(n)))] public static boolean[] visit; //true代表不是素数,fal ...
分类:
其他好文 时间:
2020-04-30 13:54:50
阅读次数:
72
In a gold mine grid of size m * n, each cell in this mine has an integer representing the amount of gold in that cell, 0 if it is empty. Return the ma ...
分类:
其他好文 时间:
2020-04-28 00:42:36
阅读次数:
52