Besides the ordinary Boy Friend and Girl Friend, here we define a more academic kind of friend: Prime Friend. We call a nonnegative integer A is the i ...
分类:
其他好文 时间:
2020-01-15 12:15:50
阅读次数:
108
"题面" "英文题面" 题解: 由于要统计字符串在某一串中的出现情况,不难想到用线段树合并。 对所有串建立广义SAM,然后拓扑排序,沿着link边向上合并即可。 每次查询,只需保存每个串终止位置的节点编号,在线段树上查询。 注意建立广义SAM时不能简单地把last设为1,还要注意不能每次都新加节点, ...
分类:
其他好文 时间:
2020-01-14 09:58:49
阅读次数:
79
A. Three Friends "题目链接" 题目大意 给你三个数$a,b,c$,每个数可以选择向左,向右或者原地不动,求$\min \left(\left|a b\right|+\left|a c\right|+\left|b c\right|\right)的值$ 解题思路 1. 先按定义求出答 ...
分类:
其他好文 时间:
2020-01-13 19:38:05
阅读次数:
50
我亲爱的朋友啊!如果有一天我们年迈的时候也可以像这样该有多好。 很奇怪,很多时候,你并没有意识到生命中重要时刻的来临,但在回首往事时,才发现那些时刻很重要。 三门峡的日子里,因为你们的存在,我有了很多很多的快乐,毫不犹豫的说,你们对我很重要,但这句话,我还是从来不会当着你们面说的,也不会承认,如果承 ...
分类:
其他好文 时间:
2019-12-30 23:20:35
阅读次数:
99
""" def getName(): print("name") getName() """ #带参数的函数 """ def set(name,sex,age): print(name,sex,age) set("xiaoming","men",14) set(age="30",sex="man", ...
分类:
其他好文 时间:
2019-12-30 17:34:14
阅读次数:
42
Problem E : Easy Project Time Limit: 2 s Description Mia and her friends are preparing for the project that the professor has given them! They receive ...
分类:
其他好文 时间:
2019-12-30 17:20:40
阅读次数:
286
A. Three Friends 题目链接:http://codeforces.com/contest/1272/problem/A 题目意思:有三个好朋友a,b,c。他们在一个坐标轴上,他们的位置分别是xa 和xb ,xc,他们三个人都可以往前或者往后走一步,只能走一步。问你他们走了(也可能不走) ...
分类:
其他好文 时间:
2019-12-22 12:27:16
阅读次数:
98
A. Three Friends #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n-1;i>=0;--i) #define Rep(i, sta, n) for( ...
分类:
其他好文 时间:
2019-12-19 19:07:18
阅读次数:
54
CC 03The game rock, paper, scissors is a classic tool used to make important decisions among two friends (read https://www.wikihow.com/Play-Rock,-Pape ...
分类:
编程语言 时间:
2019-12-19 13:01:43
阅读次数:
79
作为一个工程师,追求极致与艺术也应当成为我们生活中的一部分,作为自己的心爱之物——博客,当然也得装扮一下,我对代码高亮有自己所喜欢的风格~本博文从实操角度,介绍如何在Hightlight选择自己喜欢的代码高亮主题并应用到自己的博客园markdown编辑器的代码高亮风格中。 ...
分类:
其他好文 时间:
2019-12-15 21:34:26
阅读次数:
193