https://ac.nowcoder.com/acm/contest/11212/E #include<bits/stdc++.h> using namespace std; // define a point class to store a point class Point { public ...
分类:
其他好文 时间:
2021-06-19 18:50:57
阅读次数:
0
原题链接 考察:贪心 错误思路: 对于每个任务,按d,a顺序排序,如果不能按时完成就付钱使得按时完成. 思路: 不一定要压当前任务的时间,我们可以压花费更小的任务时间,使得超时任务按时完成. ##Code #include <iostream> #include <cstring> #include ...
分类:
其他好文 时间:
2021-06-19 18:48:51
阅读次数:
0
直接引入就好了~ <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script> <script> // VConsole 默认会挂载到 `window.VConsole` 上 var vConsole = new wi ...
分类:
移动开发 时间:
2021-06-18 20:12:57
阅读次数:
0
一、Fiddler端配置: 路径【Tool】->【Fiddler Options】->【HTTPS】 二、手机端配置 1、为手机链接的WiFi设置代理: 2、手机安装证书: 在fiddler端下载证书 在手机浏览器上输入:http://IPv4地址:端口(例如:http://192.168.0.1: ...
分类:
移动开发 时间:
2021-06-18 20:11:44
阅读次数:
0
1.下载Zookeeper 官网 使用wget下载: wget https://mirrors.bfsu.edu.cn/apache/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz 2.解压资源 # 解压资源到指定目录下 tar ...
分类:
其他好文 时间:
2021-06-18 20:04:20
阅读次数:
0
import zlib import websocket import json import redis import pymysql import time rds = redis.StrictRedis(host='10.10.6.83', port=6379, db=3, password= ...
分类:
编程语言 时间:
2021-06-18 19:59:07
阅读次数:
0
直接导包 <dependency> <groupId>net.sourceforge.nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>1.9.22</version> </dependency> ...
分类:
其他好文 时间:
2021-06-18 19:55:12
阅读次数:
0
文件标签栏换行展示 你可能看过需要插件、写css的,但是现在只需要简简单单的配置就行啦,打开设置在工作区中搜索 workbench.editor.wrapTabs,给它打上勾勾就好啦~ 效果: Microsoft Edge Tools for VS Code 在扩展中搜索该插件进行安装,在调试的时候 ...
分类:
其他好文 时间:
2021-06-18 19:41:35
阅读次数:
0
基本Dos命令 盘符切换 A: C: 查看当前目录下的所有文件 dir 切换目录 cd + <direcory name> //change directory cd + /d + <directory name> //跨盘符切换 cd + .. //回到上一级目录 清屏 cls 退出终端 exit ...
分类:
其他好文 时间:
2021-06-18 19:40:36
阅读次数:
0