Graph And Its Complement time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Given three num ...
分类:
其他好文 时间:
2018-06-26 22:35:07
阅读次数:
248
题解 这个字符集很小,我们可以把每个字符拿出来做一次匹配,把第一个字符串处理每个出现过的该字符处理成一个区间加,即最后变成第一个字符串的该位置能够匹配某字符 例如对于样例 10 4 1 AGCAATTCAT ACAT 我们做A的时候,把第一个串处理成 AAAAAA00AA0 第二个串 A0A0 那么 ...
分类:
其他好文 时间:
2018-06-15 10:54:08
阅读次数:
216
到AtCoder觉得整个人都需要交智商税了呢= = 题解 看完前面三道觉得很简单,代码也没写……看到最后的F题题解看了一上午…… 就写一下F题吧 感觉这道题和之前见过的某道题有点一样,又不太一样…… 智商 ,看了好久题解才想明白一点。。。 就是……我们先想一下,我们如果按照每个点交钱的顺序写下一个序 ...
分类:
其他好文 时间:
2018-06-12 14:44:35
阅读次数:
636
https://zybuluo.com/ysner/note/1176508 题面 给出各种形态的树,问哪些树互为重构树? $n\leq50$ 解析 $method\ 1$ 一开始没注意到 不论树有没有根,都要以树的重心为根 ,根的不同可以改变树的形态,如一棵树变成一条链之类。 树的重心的要求是使子 ...
分类:
其他好文 时间:
2018-06-08 23:15:44
阅读次数:
167
vtkWarpVector is a filter that modifies point coordinates by moving points along vector times the scale factor. Useful for showing flow profiles or me ...
分类:
其他好文 时间:
2018-06-03 22:20:07
阅读次数:
196
Description Once upon a time there lived a king and he had N sons. And there were N beautiful girls in the kingdom and the king knew about each of his ...
分类:
其他好文 时间:
2018-05-22 22:18:40
阅读次数:
151
题解 我是zz吧 nonprime[i prime[j]] = 0 = = 还以为是要卡常,卡了半天就是过不掉 我们来说这道题…… 首先,我们考虑一个$K^2$做法 $f_{k}(N) = \sum_{i = 1}^{N} i^{k}R^{i}$ $(R 1)f_{k}(N) = \sum_{i = ...
分类:
其他好文 时间:
2018-05-22 19:08:10
阅读次数:
429
scanf、printf、putchar、getc、putc、fgets、fputs、sscanf、sprintffscanf和fprintf fgets 从屏幕上获取输入(stdin)或者从文件中获取输入fputs 输入到屏幕上(stdout)或者输出到文件中.scanf 从屏幕上的输入格式化分离 ...
分类:
其他好文 时间:
2018-05-22 00:05:45
阅读次数:
193
#include <stdio.h> int main() { for (float y = 1.5f; y > -1.5f; y -= 0.1f) { for (float x = -1.5f; x < 1.5f; x += 0.05f) { float a = x * x + y * y - 1 ...
分类:
编程语言 时间:
2018-05-20 19:30:10
阅读次数:
227
https://zybuluo.com/ysner/note/1153362 题面 她的面前浮现出一个长度为$n$的序列$\{ai\}$,她想找出一段区间$[L,R]$($1\leq L \leq R\leq n$)。 这个特殊区间满足,存在一个$k$($L\leq k\leq R$),并且对于任意 ...
分类:
其他好文 时间:
2018-05-19 18:40:05
阅读次数:
201