chris

Codeforces Round #369 (Div. 2) B. Chris and Magic Square 水题

匆匆过客 提交于 2020-03-14 10:08:50
B. Chris and Magic Square 题目连接: http://www.codeforces.com/contest/711/problem/B Description ZS the Coder and Chris the Baboon arrived at the entrance of Udayland. There is a n × n magic grid on the entrance which is filled with integers. Chris noticed that exactly one of the cells in the grid is empty, and to enter Udayland, they need to fill a positive integer into the empty cell. Chris tried filling in random numbers but it didn't work. ZS the Coder realizes that they need to fill in a positive integer such that the numbers in the grid form a magic square. This means that he has to fill in a

RabbitMQ安装与初始配置

和自甴很熟 提交于 2019-12-30 01:26:24
目录 Erlang安装 RabbitMQ安装 启动/关闭/状态查看 访问端口 参考 用户权限管理 用户管理 权限管理 参考 System Limits 参考 日志 本文只讨论linux下的Rabbitmq安装。 Erlang安装 rabbitmq依赖于Erlang,需先安装,推荐安装 rabbitmq/erlang-rpm : #clone源码 git clone https://github.com/rabbitmq/erlang-rpm.git #make cd erlang-rpm make #需要等待较长时间 cd RPMS/x86_64 #其下有两个rpm包 erlang-19.3.6-1.alios6.x86_64.rpm erlang-debuginfo-19.3.6-1.alios6.x86_64.rpm, 选择前者安装 #安装 sudo rpm -ivh erlang-19.3.6-1.alios6.x86_64.rpm RabbitMQ安装 在 官网下载页面 找到和系统版本对应的rabbitmq版本: #安装rabbitmq-server sudo yum install rabbitmq-server-3.6.10-1.el6.noarch.rpm #此时可能报:Requires: socat, 以下是解决方法, 参考:http://www.cnblogs

Searching a list based on values in another list

匿名 (未验证) 提交于 2019-12-03 00:45:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have a list of names which I'm trying to pull out of a list of strings. I keep getting false positives such as partial matches. The other caveat is that I'd like it to also grab a last name where applicable. names = ['Chris', 'Jack', 'Kim'] target = ['Chris Smith', 'I hijacked this thread', 'Kimberly','Christmas is here', 'CHRIS'] desired_output = ['Chris Smith', 'Kimberly', 'CHRIS'] I've tried this code: [i for e in names for i in target if i.startswith(e)] This predictably returns Chris Smith, Christmas is here, and Kimberly. How would I

luogu P4408 [NOI2003]逃学的小孩

柔情痞子 提交于 2019-12-01 05:03:02
题目描述 Chris家的电话铃响起了,里面传出了Chris的老师焦急的声音:“喂,是Chris的家长吗?你们的孩子又没来上课,不想参加考试了吗?”一听说要考试,Chris的父母就心急如焚,他们决定在尽量短的时间内找到Chris。他们告诉Chris的老师:“根据以往的经验,Chris现在必然躲在朋友Shermie或Yashiro家里偷玩《拳皇》游戏。现在,我们就从家出发去找Chris,一但找到,我们立刻给您打电话。”说完砰的一声把电话挂了。 Chris居住的城市由N个居住点和若干条连接居住点的双向街道组成,经过街道x需花费Tx分钟。可以保证,任两个居住点间有且仅有一条通路。Chris家在点C,Shermie和Yashiro分别住在点A和点B。Chris的老师和Chris的父母都有城市地图,但Chris的父母知道点A、B、C的具体位置而Chris的老师不知。 为了尽快找到Chris,Chris的父母会遵守以下两条规则: 如果A距离C比B距离C近,那么Chris的父母先去Shermie家寻找Chris,如果找不到,Chris的父母再去Yashiro家;反之亦然。 Chris的父母总沿着两点间唯一的通路行走。 显然,Chris的老师知道Chris的父母在寻找Chris的过程中会遵守以上两条规则,但由于他并不知道A,B,C的具体位置,所以现在他希望你告诉他

三剑客之awk

一笑奈何 提交于 2019-11-29 04:52:34
简介 Awk 分别代表其三个作者姓氏的第一个字母: Alfred Aho 、Peter Weinberger、Brain Kernighan 目前在Linux中常用的是 awk 编译版本有 mawk 、gawk 以 RedHat 为代表使用的是 gawk,以Ubuntu为代表使用的是 mawk;CentOS 当然也用的是gawk gawk 是GUN Project 的 awk解释器的开源代码实现 工作原理 Awk 是被设计用于文本处理,并通常被用作数据提取和报告工具的解释性程序设计语言 awk如果未指定动作,则所有匹配该模式的行都显示在屏幕上;如果只指定动作而未定义模式,会对所有输入行执行指定动作。 awk使用一行作为输入,并将这一行赋予内部变量$0,默认时每一行也可以称为一个记录,以换行符结束。 awk每一行根据FS这个内部变量来进行列的划分,每一列为一个变量,$1等于Tom,$2等于Savage,一次类推,最多可以叠加到100 awk打印字段时,将采用print函数 awk每输出一行之后,将从文本输入获取另外一行,并将其存储至$0,覆盖原来的内容,重新将新的行进行分列,并进行处理,重复该操作,一直到最后一行。 执行格式 awk程序由awk命令、括在引号(或者写在文件)中的程序指令以及输入文件的文件名几个部分组成; awk如果没有指定输入文件,输入则来自标准输入(stdin)