Stancu likes space travels but he is a poor software developer and will never be able to buy his own spacecraft. That is why he is preparing to steal ...
分类:
其他好文 时间:
2019-07-13 12:07:28
阅读次数:
109
1、不同类别文本量统计,类别不平衡差异 2、文本长度统计 3、文本处理,比如文本语料中简体与繁体共存,这会加大模型的学习难度。因此,他们对数据进行繁体转简体的处理。 同时,过滤掉了对分类没有任何作用的停用词,从而降低了噪声。 4、上文提到训练数据中,存在严重的样本不均衡问题,如果不对该问题做针对性的 ...
分类:
其他好文 时间:
2019-07-02 16:15:03
阅读次数:
135
1030 Travel Plan (30 分) 1030 Travel Plan (30 分) 1030 Travel Plan (30 分) A traveler's map gives the distances between cities along the highways, togeth ...
分类:
其他好文 时间:
2019-06-24 09:14:46
阅读次数:
85
传送门 求出一条s到t的路径,使得这条路径上经过最高温度最小的前提下,总长度最短。 什么最大值最小很容易想到二分...就每次枚举最高温度然后在这个温度下跑最短路看是否连通。 但是这道题也可以用最小生成树的算法来做qwq 想要温度尽量小,就以温度为关键字,跑一遍最小生成树,就得到了使s,t连通所需要的 ...
分类:
其他好文 时间:
2019-06-09 12:52:48
阅读次数:
80
4.0.0 cn.itcast travel 1.0-SNAPSHOT war UTF-8 1.7 1.7 junit junit 3.8.1 test ... ...
分类:
其他好文 时间:
2019-06-03 12:38:11
阅读次数:
102
1 Avoid triggers Don’t travel on small planes, which tend to be worse than larger jets. If you are on a boat, keep towards the centre, where there is ...
分类:
其他好文 时间:
2019-05-28 09:15:45
阅读次数:
113
After the success of 2nd anniversary (take a look at problem FTOUR for more details), this 3rd year, Travel Agent SPOJ goes on with another discount t ...
分类:
其他好文 时间:
2019-05-26 17:48:20
阅读次数:
82
题目描述 奶牛们在被划分成N行M列(2 include include include define maxn 110 define maxt 20 using namespace std; const int dir[4][2] = {{ 1, 0}, {1, 0}, {0, 1}, {0, 1} ...
分类:
其他好文 时间:
2019-05-12 19:54:08
阅读次数:
147
Chinese Postman Problem is a very famous hard problem in graph theory. The problem is to find a shortest closed path or circuit that visits every edge ...
分类:
其他好文 时间:
2019-05-09 21:43:59
阅读次数:
113
很好的一道题呀 思路 状态$d(i,j)$表示已经经过了行程单中的$i$个城市,目前在城市$j$的最小代价,直接建边跑最短路就行了 比如机票为$ACBD$,行程单为$CD$,那么对于$(0,A)$,连向$(1,C)$,$(1,B)$,$(2,D)$ 有两个需要注意的地方 1.起点为$(1,行程单的起 ...
分类:
其他好文 时间:
2019-05-07 10:23:37
阅读次数:
127