http://acm.hdu.edu.cn/showproblem.php?pid=1042 代码 无结构体: #include<iostream> #include<string> #include<cstring> #include<algorithm> using namespace std; ...
分类:
其他好文 时间:
2020-05-02 12:16:52
阅读次数:
73
题 复合词(Compound Words,UVa 10391)。题目详情看这个:https://www.jianshu.com/p/7c43fb5f2ecd #include <iostream> #include <cstring> #include <string> #include <set> ...
分类:
其他好文 时间:
2020-05-01 23:48:04
阅读次数:
62
1 #include<iostream> 2 #include<string> 3 #include<queue> 4 using namespace std; 5 int k; 6 struct sortt{ 7 int pri; 8 int id; 9 friend bool operator< ...
分类:
其他好文 时间:
2020-05-01 23:44:44
阅读次数:
63
Area of Mushroom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 4560 Accepted Submission(s): 100 ...
分类:
其他好文 时间:
2020-05-01 22:12:58
阅读次数:
72
"Increasing Speed Limite HDU 3030" 题意 给你一个长度为m的数组A,你可以通过给的X,Y,Z计算获得一个长度为n的数组,问你这个n长的序列有多少个非空严格上升序列。 思路 dp $dp[i]$: 以第i个元素为结尾的非空严格上升序列个数 $dp[i] =\sum_{ ...
分类:
编程语言 时间:
2020-05-01 20:50:27
阅读次数:
68
http://acm.hdu.edu.cn/showproblem.php?pid=1002 代码 #include<iostream> #include<string> #include<cstring> #include<algorithm> struct bignum { int list[2 ...
分类:
其他好文 时间:
2020-05-01 20:15:31
阅读次数:
49
线性基板子题,注意特判$0$,开$long~long$就好。 ...
分类:
其他好文 时间:
2020-05-01 12:32:04
阅读次数:
51
new words and phrases come from: https://youtu.be/dwI5b-wRLic new words: perniciously, ramification, airtight plan, undercut, wreck, crate, mediocre, ...
分类:
其他好文 时间:
2020-05-01 11:11:17
阅读次数:
73
本文讲解 skip-gram 模型以及优化和扩展。主要包括层次 Softmax、负采样、学习短语的表示。 先提一下词向量: 词向量(也叫词嵌入,word embedding),简单地说就是用一个低维向量表示一个词。由于独热编码(one-hot encoding)存在维度灾难,即稀疏性,且无法理解词与 ...
分类:
其他好文 时间:
2020-04-30 21:26:52
阅读次数:
67
Game on S♂play Time Limit: 16000/8000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 942 Accepted Submission(s): 208 ...
分类:
其他好文 时间:
2020-04-29 18:38:52
阅读次数:
57