经典冒泡排序算法 using System; using System.Threading.Tasks; namespace SingletonDemo { class Program { static void Main(string[] args) { int[] arr = new int[1 ...
分类:
编程语言 时间:
2020-06-25 15:42:50
阅读次数:
53
agc031_d A Sequence of Permutations https://atcoder.jp/contests/agc031/tasks/agc031_d https://img.atcoder.jp/agc031/editorial.pdf Tutorial 对于排列 \(p,q\ ...
分类:
其他好文 时间:
2020-06-25 14:14:06
阅读次数:
52
agc037_f Counting of Subarrays https://atcoder.jp/contests/agc037/tasks/agc037_f https://img.atcoder.jp/agc037/editorial.pdf Tutorial 我们称一个序列为合法序列当且仅当 ...
分类:
其他好文 时间:
2020-06-25 10:15:33
阅读次数:
68
vscodec++插件编译如下代码会报错 for (int i = 0; i < 10; i++) 只有c99版本以上的编译器才支持,在for起始语句里面声明变量,因此需要指定编译器版本为c99,gcc命令行可以输入gcc -std=c99来实现;vscode需要在.vscode/tasks.jso ...
分类:
其他好文 时间:
2020-06-25 10:02:32
阅读次数:
168
nikkei2019_2_qual_e Non-triangular Triplets https://atcoder.jp/contests/nikkei2019-2-qual/tasks/nikkei2019_2_qual_e 给出 \(N\) 和 \(K\) . 判断对于这 $3N$ 个数 \ ...
分类:
其他好文 时间:
2020-06-25 09:34:22
阅读次数:
52
常规的: 1、过早的过滤字段、只选用需要的列、要加分区 2、join 小表放左边 set hive.exec.reducers.max=200; set mapred.reduce.tasks= 200; 增大Reduce个数 set hive.groupby.mapaggr.checkinterv ...
分类:
数据库 时间:
2020-06-22 15:34:57
阅读次数:
75
agc_044e Random Pawn https://atcoder.jp/contests/agc044/tasks/agc044_e Tutorial http://auoj.net/download.php?type=solution-pdf&id=413 https://atcoder. ...
分类:
其他好文 时间:
2020-06-21 09:21:23
阅读次数:
46
不废话,直接代码 using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; usi ...
一、并行编程 - 数据并行 System.Threading.Tasks.Parallel 类 二、并行编程 - Task任务三、并行编程 - Task同步机制。TreadLocal类、Lock、Interlocked、Synchronization、ConcurrentQueue以及Barrier... ...
/var/log : where the linux put the logs /var/log/cron on system cron tasks /var/log/cups/ something about the printer /var/log/dmesg/ system self chec ...
分类:
系统相关 时间:
2020-06-18 19:21:13
阅读次数:
56