11 2018 档案
摘要:相信不少人无法登录这个该死的Geforce Experience。这里提供几个解决方案: 1.在“服务”中启动运行 NVIDIA NetworkService Container 方式改为手动或者自动 2.开启手机热点,电脑连上热点再登录,大概率成功 3.开启代理服务器
阅读全文
摘要:1.在 usr/share/applications/ 中可以找到 .desktop 文件,修改其内容可以修改你的桌面快捷方式, 例如图标或者分类还可以新建你的 .desktop ,如果你安装的软件没有自动建造快捷方式的话,你 可以帮帮它,比如帮它设置一个图标。然后为它指定一个执行的路径。 (例如我
阅读全文
摘要:菜鸡又要爆零了 辛辛苦苦背板子结果考时候脑子一片空白 第一题线段树调了半小时 看完三道题两道写暴搜一道写暴力(说是暴搜,觉得更像写了个背包) 别提暴搜还忘记剪枝. . . . . . 我觉得考场上最菜的就是我了 周围都是大佬打键盘,只有我还在苦苦思索 带了一瓶咖啡喝掉一半还是很困 昨天晚上10:14
阅读全文
摘要:#include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; const ll INF=99999999; int main() { ios_base::sync_with_stdio(fa...
阅读全文
摘要:定义 NAME 为要操作的对象名 定义 DIR 为文件所在的绝对路径 所有操作默认在普通用户下进行 所有软件包默认是指Debian包(deb包) 1.查看进程 2.强制结束进程 PID由top获得:找到进程名字,看左边的PID 3.创建文件夹 4.编辑某个文本 用root权限编辑某个文本 5.在已经
阅读全文
摘要:代码: struct NODE{ int to; int nxt; int c; }node[MM];//链式向前星 int head[NM],lcnt=1; void add(int a,int b,int c){ node[lcnt].to=b; node[lcnt].c=c; node[lcn
阅读全文
摘要:代码: #include<iostream> #include<vector> #include<cstdio> #include<queue> #include<map> #include<cstdlib> #include<cmath> #include<algorithm> #include<
阅读全文
摘要:代码: #include<iostream> #include<vector> #include<cstdio> #include<queue> #include<map> #include<cstdlib> #include<cmath> #include<algorithm> #include<
阅读全文