码迷,mamicode.com
首页 >  
搜索关键字:ll    ( 5333个结果
2.5 上海马拉松 C题题解
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef double db; ll a, b, c, d; void solve1() { if (a > 0) { puts("(-inf,inf)"); ...
分类:其他好文   时间:2021-02-08 12:05:36    阅读次数:0
[AGC039E] Pairing Points
#include <bits/stdc++.h> typedef long long ll; ll dp[40][40][40],ans; int n,a[40][40]; char s[40]; ll dfs(int l,int r,int mid){ if (l==r) return 1; if ...
分类:其他好文   时间:2021-02-08 11:40:55    阅读次数:0
UOJ87 mx的仙人掌 虚仙人掌
UOJ87 mx的仙人掌 这里没有用传统的方点外接圆点的做法,而是方点虚树上儿子跳到方点所在环上单调队列处理,本质上是一样的. code //爽! #include<bits/stdc++.h> using namespace std; typedef long long ll; const int ...
分类:其他好文   时间:2021-02-06 12:15:50    阅读次数:0
2019 年华东师范大学机试
找规律后可以找到这个。 #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll inf = 0x3f3f3f3f; const double eps = 1e-6; const ll N = 1e5+7 ...
分类:其他好文   时间:2021-01-27 13:56:17    阅读次数:0
E 牛牛数数 线性基+二分
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 #define ENDL "\n" 5 typedef long long ll; 6 typedef pair<int, int> pii; 7 const int inf = 0x7fff ...
分类:其他好文   时间:2021-01-26 12:07:05    阅读次数:0
centos永久性修改系统时间显示格式
我们经常使用 "ls - ll"或“ll”命令查看文件夹或文件创建及权限信息,但是显示的日期看着不怎么舒服,所以本文记录怎么永久改变日期显示格式 1- 修改配置文件:/etc/profile,在文件内容末尾加入:export TIME_STYLE='+%Y-%m-%d %H:%M:%S' gedit ...
分类:其他好文   时间:2021-01-15 11:52:08    阅读次数:0
CPU 问题 —— 数据收集(官网)-- Debug high CPU usage in .NET Core
Debug high CPU usage in .NET Core In this tutorial, you'll learn how to debug an excessive CPU usage scenario. Using the provided example ASP.NET Core ...
分类:Web程序   时间:2021-01-15 11:42:28    阅读次数:0
atcoder abc 188 题解
A - Three-Point Shot 题目大意 两个球队现在分数分别给出,问少的一方投入三分球之后是否能翻盘. 代码 #include <bits/stdc++.h> using namespace std; typedef long long ll; #define forn(i,x,n) f ...
分类:其他好文   时间:2021-01-13 10:46:21    阅读次数:0
Linux 基础命令
用户权限管理 如何查看用户权限 [root@localhost ~]# ls -l /etc/passwd -rw-r--r--. 1 root root 2528 Mar 15 10:20 /etc/passwd [root@localhost ~]# ll /etc/passwd -rw-r-- ...
分类:系统相关   时间:2021-01-08 10:41:22    阅读次数:0
Linux Linux基础命令
1、linux下文件类型 b(块设备文件) c(字符设备文件) d(目录) -(普通文件) l(链接文件) s(套接字文件) p(管道文件) 在终端下,用 ll 命令查看,第一位表示文件类型 Lib@linuxU:~/桌面$ ll 总用量 92 drwxr-xr-x 2 tarena tarena ...
分类:系统相关   时间:2021-01-07 12:25:38    阅读次数:0
5333条   上一页 1 ... 4 5 6 7 8 ... 534 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!