Linux常用命令 文件夹操作 序号 命令 解释 1 pwd 查看所在目录(绝对路径) 2 ls -l 或者 ll 查看当前目录下的所有东西(两者相同) 3 ls -lht 查看文件大小 4 tab 自动补全 5 touch xxx.txt 创建文本 6 mkdir xxx 创建文件夹 7 mv x ...
分类:
系统相关 时间:
2021-06-30 17:37:43
阅读次数:
0
二分 求一个序列的最长上升子序列个数。 本程序采用边读边处理 + 二分法。 ll f[maxn], ans = 1; //注意答案个数初始化为1 int main() { ll n = read(); for (int i = 1; i <= n; ++i) { int x = read(); if ...
分类:
其他好文 时间:
2021-06-29 15:59:12
阅读次数:
0
#include <bits/stdc++.h> using namespace std; using ll = long long ; ll euler(ll n){ ll k=n; for(ll i=2;i*i<=n;i++) if(n%i==0){ k-=k/i; while(n%i==0)n ...
分类:
其他好文 时间:
2021-06-28 20:14:20
阅读次数:
0
crontab文件只在两处,一个是/etc/crontab中,其相关联的是 /etc/cron.daily monthly等文件夹 另一个各用户分别的crontab文件在 /var/spool/cron ll /var/spool/cron/atjobs/ atspool/ crontabs/ ro ...
分类:
Web程序 时间:
2021-06-28 19:05:08
阅读次数:
0
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:
其他好文 时间:
2021-06-21 19:59:39
阅读次数:
0
查看chmod [17:03:46 root@localhost data]#ll /usr/bin/chmod -rw-r--r--. 1 root root 58584 Nov 6 2016 /usr/bin/chmod 通过chmod自己给自己添加权限,显示拒绝 [17:03:58 root@ ...
分类:
其他好文 时间:
2021-06-17 16:26:06
阅读次数:
0
利用几何关系转化以后,变成经典的区间覆盖问题 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 10010; const double eps = 1e-11; int n, L, ...
分类:
其他好文 时间:
2021-06-03 17:39:32
阅读次数:
0
网上的很多代码都是错的 正确的代码 using ll = long long int; ll is_mul_overflow(ll a,ll b) { if (a == -1) return (b == INT64_MIN); if (b == -1) return (a == INT64_MIN) ...
分类:
其他好文 时间:
2021-06-02 19:24:09
阅读次数:
0
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:
编程语言 时间:
2021-06-02 18:28:48
阅读次数:
0
#include <iostream> #include <vector> using namespace std; using ll = long long ; const int N=2e5+10; ll f[N],g[N],size1[N]; vector<int>gg[N]; void df ...
分类:
其他好文 时间:
2021-06-02 17:01:29
阅读次数:
0