查看CentOS-Base.repo部分内容,文件路径 /etc/yum.repos.d/CentOS-Base.repo [base] baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ mirrorlist=http ...
分类:
其他好文 时间:
2021-02-05 10:29:54
阅读次数:
0
日常不搞清楚题意乱写 WA。 看值域这么小,考虑枚举最大高度 \(maxh\): \(h_i>maxh\) 且 \(w_i>maxh\),不合法。 \(h_i>maxh\) 且 \(w_i\leq maxh\),必须换。 \(h_i\leq maxh\) 且 \(w_i>maxh\),不能换。 \( ...
分类:
其他好文 时间:
2021-02-04 12:24:22
阅读次数:
0
场景:前端在request body中传了多个参数,为了方便使用@RequestBody映射成相应的参数对象。 @PostMapping(value = "/game/sync") public WebMessage gameMsgReport(UserInfo userInfo,@RequestB ...
分类:
Web程序 时间:
2021-02-04 11:51:35
阅读次数:
0
看了vue3的文档 .sync 貌似被抛弃了,无情,所以再来看一遍文档。 非 Prop 的 Attribute 一个非 prop 的 attribute 是指传向一个组件,但是该组件并没有相应 props 或 emits 定义的 attribute。常见的示例包括 class、style 和 id ...
分类:
其他好文 时间:
2021-02-03 10:34:36
阅读次数:
0
<repositories> <repository> <id>alimaven</id> <name>Maven Aliyun Mirror</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> ...
分类:
其他好文 时间:
2021-02-02 11:34:23
阅读次数:
0
一、as导入demo的准备步骤 1.修改app同目录下的build.gradle修改classpath2.修改gradle->wrapper->gradle-wrapper.properties修改distributionUrl 二、连接真机调试 三、使用百度地图API 没有完成,打开demo后提示 ...
分类:
其他好文 时间:
2021-02-02 11:33:08
阅读次数:
0
1、下载R安装包 [root@centos7 home]# wget https://mirror.bjtu.edu.cn/cran/src/base/R-3/R-3.6.3.tar.gz --2021-01-31 23:52:23-- https://mirror.bjtu.edu.cn/cran ...
分类:
系统相关 时间:
2021-02-02 10:42:34
阅读次数:
0
给定 3 个集合,每个集合里有若干个数,每次可以从一个集合选择一个数 a,从另一个集合选择一个数 b,令 a=a-b,并且删除 b。操作到只剩下一个数为止。求剩下的这个数的最大值。 ...
分类:
其他好文 时间:
2021-01-30 12:18:25
阅读次数:
0
STL是一个方便的工具,比如说set的互异性以及按顺序存储(红黑树);stack的先进后出;queue的先进先出;deque的兼而有之;map的匹配……但是,STL是一个很占时间复杂度的工具。所以在使用的时候最好是关闭同步防止卡时间。 ios::sync_with_stdio(false); 这样就 ...
分类:
其他好文 时间:
2021-01-30 12:12:34
阅读次数:
0
链接 : https://codeforces.com/contest/1475/problem/D 排序 + 双指针 #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.t ...
分类:
其他好文 时间:
2021-01-28 12:04:58
阅读次数:
0