B - Reversi 题目链接:https://atcoder.jp/contests/agc031/tasks/agc031_b 题意: 给出n个数,然后现在你可以对一段区间修改成相同的值,前提是左右端点的值相同。问最后这n个数有多少种不同的值。 题解: 设dp[i]表示只考虑1~i这段,有多少 ...
分类:
其他好文 时间:
2019-03-21 21:49:31
阅读次数:
178
#role应用 #roles跟调用角色的剧本文件应该与roles同级关系,即放在ansible目录下 #makir /root/ansible/roles/{nginx,http,ftp,mysql,redis} palybook.yml roles/ project/ tasks/ 定义task,... ...
分类:
其他好文 时间:
2019-03-19 16:44:07
阅读次数:
337
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.A... ...
分类:
Web程序 时间:
2019-03-19 16:37:17
阅读次数:
218
1 // 题意:输入n和m,以及m个二元组(i,j),求1~n的一个排列使得对于每个(i,j),i在j的前面 2 // 算法:拓扑排序。注意m可能等于0 3 #include 4 #include 5 const int maxn = 1000; 6 int n, m, G[maxn][maxn],... ...
分类:
其他好文 时间:
2019-03-17 01:27:53
阅读次数:
159
简单的计数题。(总算做出一道AGC的B题了,然而这场比赛我忘记打了233333) 题目链接: https://atcoder.jp/contests/agc031/tasks/agc031_b 题意: 有一个长度为$N$的颜色序列,第$i$个位置初始颜色为$a_i$, 可以执行若干次操作,每次可以选 ...
分类:
其他好文 时间:
2019-03-17 01:23:26
阅读次数:
251
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { //... ...
分类:
编程语言 时间:
2019-03-16 22:06:18
阅读次数:
213
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { pu... ...
分类:
编程语言 时间:
2019-03-16 22:04:30
阅读次数:
206
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { pu... ...
分类:
编程语言 时间:
2019-03-16 22:00:48
阅读次数:
159
https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.valuetask-1?view=netcore-2.2 https://devblogs.microsoft.com/dotnet/understanding-th ...
分类:
其他好文 时间:
2019-03-13 20:04:25
阅读次数:
133
前面写串口通讯是有界面的,后面的项目感觉串口通讯只是辅助的作用,应该专门写一个不可视的类来做,这样的好处是通讯模块是独立的,要用的时候直接引用就行了。usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.IO;us
分类:
其他好文 时间:
2019-03-09 23:24:14
阅读次数:
207