题目链接:https://atcoder.jp/contests/abc158/tasks/abc158_f 题目大意 有$N$个机器人分布在数轴上不同的位置,初始为未激活状态,作为上帝,你可以手动激活任意数量的机器人,当第$i$个机器人被激活时,它会向前走$D_i$个单位长度然后自爆,并且坐标区间 ...
分类:
其他好文 时间:
2020-03-21 12:41:00
阅读次数:
93
1、重命名表名: ALTER TABLE tasks RENAME TO work_items; 2、添加列到表中: ALTER TABLE tasks ADD COLUMN complete DECIMAL(2,1) NULL AFTER description; 3、删除表中的列: ALTER ...
分类:
数据库 时间:
2020-03-18 15:49:47
阅读次数:
72
一、基本使用 django_celery_demo ├── app01 │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └─ ...
分类:
其他好文 时间:
2020-03-17 15:39:24
阅读次数:
61
```python #roles跟调用角色的剧本文件应该与roles同级关系,即放在ansible目录下 #makir /root/ansible/roles/{nginx,http,ftp,mysql,redis} palybook.yml roles/ project/ tasks/ 定义tas... ...
分类:
其他好文 时间:
2020-03-14 14:48:00
阅读次数:
53
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI ...
分类:
其他好文 时间:
2020-03-11 23:30:43
阅读次数:
92
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System ...
分类:
其他好文 时间:
2020-03-11 15:32:14
阅读次数:
137
{ "version": "2.0.0", "options": { "cwd": "${workspaceRoot}/build" },/////////////////////////////////////////////////指定命令执行所在路径 "tasks": [ { "label": ...
分类:
Web程序 时间:
2020-03-10 19:53:14
阅读次数:
515
AtCoder Beginner Contest 158 地址:https://atcoder.jp/contests/abc158/tasks A - Station and Bus 题意:AB之间通车,给三个字符,问能否通车,水题,只要不全是A 或者全是B都能通车 #include<bits/s ...
分类:
其他好文 时间:
2020-03-09 01:40:40
阅读次数:
72
题目链接:https://atcoder.jp/contests/abc157/tasks/abc157_e 题目大意 给定一串全由小写英文字母组成的字符串,然后顺序给出$Q$个操作,一种为替换字符串中的某个字符;另一种为查询字符串某个区间里面有多少个不同的字符。要求顺序输出第二种操作的结果。 分析 ...
分类:
其他好文 时间:
2020-03-07 19:04:20
阅读次数:
125
aa 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Config ...
分类:
数据库 时间:
2020-03-06 19:46:53
阅读次数:
74