Nvidia 2019 perl 笔试题 统计一个文件内单词的频次并排序 文本如下: "ALL happy families resemble one another; every unhappy family is unhappy in its own way. All was confusion ...
分类:
其他好文 时间:
2020-02-28 01:22:15
阅读次数:
74
题意 $n$ 排列,反复进行:将序列中为前缀最大值的数全部移动到序列末(两种数不改变相对位置),问经过多少次后第一次全部升序排列 做法 定义 :用high表示为前缀最大值,low则反之 考虑忽略$1$,那么$[2,n]$相对排好序后,假设用了$T$次,如果$1$在首,则答案为$T$,否则还要在进行一 ...
分类:
其他好文 时间:
2020-02-25 11:10:04
阅读次数:
62
"题目" 显然对每一堆石子求一个SG之后异或起来就好了。 这个SG看起来只能$O(n^2)$的样子啊,考虑找规律; 一下是$k=3$时的一些SG函数的值 不难发现一些规律 $$ \operatorname{SG}(n) = \begin{cases} 0 & 0 \le n \sqrt{n}$,于是 ...
分类:
其他好文 时间:
2020-02-20 09:26:19
阅读次数:
75
Polycarpus has a ribbon, its length is n. He wants to cut the ribbon in a way that fulfils the following two conditions: After the cutting each ribbon ...
分类:
其他好文 时间:
2020-02-18 13:04:42
阅读次数:
81
44 TCP 协议详解 TCP 协议 传输控制协议, Transmission Control Protocol,其功能包括:传输;控制 传输包括:建立连接、关闭连接、保证可靠 建立连接:三次握手 三次握手(Three-Way Handshake)即建立TCP连接,就是指建立一个TCP连接时,需要客 ...
分类:
其他好文 时间:
2020-02-13 16:55:35
阅读次数:
78
To use EMC NW NMM to backup MS SQL always on database, that is a simple and safe way to protector data. Here is an example. node1,node2,node3 they are ...
分类:
其他好文 时间:
2020-02-12 22:07:44
阅读次数:
71
1. Object Representations Every object-oriented language has at least one standard way of getting a string representation from any object. Python has ...
分类:
编程语言 时间:
2020-02-10 10:04:11
阅读次数:
69
基本解释 1.处理事情方法。 2.制作物品的方法。 3.完成某项工作、任务的方法和手段。 4.宗教信仰人士装神弄鬼的把戏。 1、 中文名:做法拼 音:zuò fǎ笔 画:19画英 译:a way of doing or making a thing 目录 1 读音、英译与笔画 2 举例 中文名:做法 ...
分类:
其他好文 时间:
2020-02-10 00:02:16
阅读次数:
93
1.Practice makes perfect.熟能生巧。 2.God helps those who help themselves.天助自助者 3.Easier said than done.说起来容易做起来难。 4.Where there is a will,there is a way.有 ...
分类:
其他好文 时间:
2020-02-09 09:29:10
阅读次数:
101
给定由非负整数组成的n×n 的正方形矩阵,你需要寻找一条路径: 以左上角为起点 每次只能向右或向下走 以右下角为终点 并且,如果我们把沿路遇到的数进行相乘,积应当是最小“round”,换句话说,应当以最小数目的0的结尾. Solution 考虑到最终答案只取决于 $2,5$ 因子数中最小的那一个,所 ...
分类:
其他好文 时间:
2020-02-07 19:04:00
阅读次数:
56