摘要:
#include #include int main() { int n, i, temp, max, flag, id; int book[1000000]; while(~scanf("%d", &n)) { memset(book, 0, sizeof(book)); max = -... 阅读全文
摘要:
看完了才发现作者是经济管理学院的。 这是篇08年的论文。 目前国内外对于中文分词的主要研究成果分为以下几种:正向最大匹配法、反向最大匹配方法、分词与词性标注一体化方法、最佳匹配法、专家系统方法、最少分词词频选择方法、神经网络方法等。 ICTCLAS( Institute of Com... 阅读全文
摘要:
贪心 #include #include using namespace std;bool cmp(const int &a, const int &b) { return a > b;}int main() { int l, n, i, ans, ids, sum; int d[600]; ... 阅读全文
摘要:
贪心 #include #include using namespace std;struct jewelry { int price; int volume; bool operator A.price; } }buf[101];int main() { int v, n, i, ans... 阅读全文