1. maven项目,加入这一个依赖包即可, <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version></dependency>使用2.9.0版本的原因是 ...
分类:
编程语言 时间:
2020-01-26 20:39:01
阅读次数:
716
给定一个n个点m条边的有向图,图中可能存在重边和自环。 所有边的长度都是1,点的编号为1~n。 请你求出1号点到n号点的最短距离,如果从1号点无法走到n号点,输出-1。 输入格式 第一行包含两个整数n和m。 接下来m行,每行包含两个整数a和b,表示存在一条从a走到b的长度为1的边。 输出格式 输出一 ...
分类:
其他好文 时间:
2020-01-25 16:55:50
阅读次数:
89
作为新手的我,看到该题很自然的没想到用搜索。。。通过大佬的讲解才有了个大体思想 【题意】给你一个棋盘nxm的,然后你的棋子只能放在有‘#’的位置,当然棋子的个数是自己定的,棋盘可放棋子的个数也是自己决定的。最后问棋子放在可用棋盘上的方案数。 【思路】由于要求摆放时任意的两个棋子不能放在棋盘中的同一行 ...
分类:
其他好文 时间:
2020-01-23 00:09:05
阅读次数:
81
You are given a series of video clips from a sporting event that lasted T seconds. These video clips can be overlapping with each other and have varie ...
分类:
其他好文 时间:
2020-01-22 10:50:53
阅读次数:
80
#include<bits/stdc++.h> using namespace std; int m,n,tot=-1,h[1005],ans=0,tp=0; struct node{ int from,next,to,rest; int last; }e[10005]; void add(int ...
分类:
其他好文 时间:
2020-01-22 01:18:06
阅读次数:
102
如何去创建项目这里就不对讲了,可以参考 :https://www.cnblogs.com/braveym/p/12214367.html 先在pom.xml文件里面添加spark依赖包 <dependency> <groupId>org.apache.spark</groupId> <artifac ...
分类:
编程语言 时间:
2020-01-19 19:04:13
阅读次数:
84
关于CSS外边距塌陷(合并)的问题主要资料来源:https://developer.mozilla.org... 定义 块的顶部外边距和底部外边距有时被组合(折叠)为单个边框,其大小是组合到其中的最大外边距,这种行为称为外边距塌陷(合并) 发生外边距塌陷的三种情况 相邻的兄弟姐妹元素 <style> ...
分类:
Web程序 时间:
2020-01-18 21:35:10
阅读次数:
145
https://acm.ecnu.edu.cn/contest/33/ # 进制转换 import math def main(): T = int(input()) while T > 0: T -= 1 a, b = map(int, input().split()) if a < 0: pri ...
分类:
编程语言 时间:
2020-01-18 00:58:42
阅读次数:
83
一.入门案例 1.引入坐标位置、导入配置文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XML ...
分类:
编程语言 时间:
2020-01-17 21:26:03
阅读次数:
69
urllib(request,error,parse,robotparse) request模块 方法:urlopen() 最基本http请求方法,利用它可以模拟浏览器的一个请求发起过程,同时他还带有助力授权验证authentication,重定向redirection,浏览器cookie 以及其他 ...
分类:
Web程序 时间:
2020-01-16 14:18:05
阅读次数:
99