vim /etc/sysconfig/network-scripts/ifcfg-ens33 增加如下内容 DNS1=8.8.8.8 DNS2=114.114.114.114 PEERDNS="no" 重启网络 service network restart ...
分类:
其他好文 时间:
2021-06-07 20:27:38
阅读次数:
0
#include <iostream>#include<string>#include <vector>#include <map>using namespace std; int main(){ vector<int> bgX{5, 10}; //方法1 bgX.erase(bgX.begin() ...
分类:
编程语言 时间:
2021-06-06 19:46:16
阅读次数:
0
这么简洁的题目当然不用数位 DP 啦。 将 \(n\) 搞成 \(10\) 的幂次之和计算。枚举后缀长度 \(i\),考虑它的贡献,因为不能填 \(7\) 也不用考虑前导零所以就是 \(9^i\)。 然后乘上 \(n-i\) 位置上的数字能取到的数量即可。 code: #include<bits/s ...
分类:
其他好文 时间:
2021-06-06 19:26:26
阅读次数:
0
题目—01字符串 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 string a="0"; 7 int n; 8 cin>>n; 9 string ans=""; 10 if ...
分类:
其他好文 时间:
2021-06-06 19:01:00
阅读次数:
0
# Obtain a transportation network from an osm file. # get osm file 方式1:OpenStreetMap Homepage # .osm.pbf下载地址 方式2:http://download.openstreetmap.fr/extr ...
分类:
Web程序 时间:
2021-06-06 18:59:22
阅读次数:
0
题目—吉祥物 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n,x; 4 int pos(int n) 5 { 6 int s=1,j=1; 7 while(s<n) 8 { 9 s+=j++; 10 } ...
分类:
其他好文 时间:
2021-06-06 18:58:39
阅读次数:
0
NFS:Network File System 网络文件系统,基于内核的文件系统。Sun 公司开发,通过使用 NFS,用 户和程序可以像访问本地文件一样访问远端系统上的文件,基于RPC(Remote Procedure Call Protocol 远程过程调用)实现 RPC采用C/S模式,客户机请求 ...
分类:
其他好文 时间:
2021-06-06 18:56:56
阅读次数:
0
1、下载 https://downloads.mysql.com/archives/community/ wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.5.62-linux-glibc2.12-x86_64.tar.g ...
分类:
系统相关 时间:
2021-06-06 18:56:23
阅读次数:
0
傅里叶变换的公式,大家脑部,本实例是先将一副图像做傅里叶变换,再对傅里叶阵列做逆变换,代码如下: #include <iostream> #include<opencv2/opencv.hpp> using namespace cv; using namespace std; void dftshi ...
分类:
其他好文 时间:
2021-06-05 18:25:20
阅读次数:
0
一、题目: 二、思路: 这道题思路非常妙:smile:,我们先理清思路,然后再来说这种思路为什么妙。 先考虑如果 \(a\) 中没有 \(-1\) 的情况。 第一步,找到一个质数 \(P\),满足 \(P\equiv 1\pmod K\)。即 \(K|(P-1)\)。 第二步,找到模 \(P\) 的 ...
分类:
其他好文 时间:
2021-06-05 18:05:31
阅读次数:
0