PE的注意,如果没有满足条件的不输出空格。
简单模拟,暴力解。

 /*  */
#include <iostream>
#include <sstream>
#include <string>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <vector>
#include <deque>
#include <bitset>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstring>
#include <climits>
#include <cctype>
#include <cassert>
#include <functional>
#include <iterator>
#include <iomanip>
using namespace std;
//#pragma comment(linker,"/STACK:102400000,1024000") #define sti set<int>
#define stpii set<pair<int, int> >
#define mpii map<int,int>
#define vi vector<int>
#define pii pair<int,int>
#define vpii vector<pair<int,int> >
#define rep(i, a, n) for (int i=a;i<n;++i)
#define per(i, a, n) for (int i=n-1;i>=a;--i)
#define clr clear
#define pb push_back
#define mp make_pair
#define fir first
#define sec second
#define all(x) (x).begin(),(x).end()
#define SZ(x) ((int)(x).size())
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1 // #define DEBUG const int maxp = ;
const int maxt = ;
const int maxl = ;
const int maxn = ;
const int INF = 0x3f3f3f3f;
int M[maxn], mn;
int M_[maxn], mn_;
map<string,int> tb;
map<string,int>::iterator iter;
int wc = , pn = , tn = ;
char s[maxl]; typedef struct {
int l;
char s[maxl]; void init() {
int id;
int len = strlen(s);
int i = , j; mn = ;
while (i < len) {
if (isspace(s[i])) {
++i;
continue;
}
j = i;
while (i<len && islower(s[i]))
++i;
s[i] = '\0';
#ifdef DEBUG
printf("\t%s\n", s+j);
#endif
string str(s+j);
iter = tb.find(str);
if (iter == tb.end()) {
id = tb[str] = wc++;
} else {
id = iter->sec;
} M[mn++] = id;
s[i] = ' ';
} M[mn] = INF;
} } profile_t; typedef struct {
int a[maxn];
int sz;
} tile_t; profile_t P[maxp];
tile_t T[maxt]; void input_profile() {
scanf("%d", &P[pn].l);
gets(P[pn].s);
// getchar();
++pn;
} void input_tile() {
int l = , id;
char ch; #ifdef DEBUG
printf("%d:\n", tn);
#endif while () {
while () {
ch = getchar();
if (isspace(ch))
continue;
else
break;
} if (ch == '|')
break; // have a word
l = ;
while () {
if (isalpha(ch)) {
if (isupper(ch))
ch = ch - 'A' + 'a';
s[l++] = ch;
} else if (isspace(ch) || ch=='|') {
if (l) {
s[l] = '\0';
#ifdef DEBUG
printf("\t%s\n", s);
#endif
string str(s);
iter = tb.find(str);
if (iter == tb.end()) {
id = tb[str] = wc++;
} else {
id = iter->sec;
}
T[tn].a[T[tn].sz++] = id;
l = ;
}
break;
} ch = getchar();
} if (ch == '|') {
getchar();
break;
}
} ++tn;
} bool judge(int pid, int tid) {
int l = P[pid].l + ;
int sz = T[tid].sz; // sort(M, M+mn); int tmp;
rep(i, , mn) {
rep(j, , mn) {
if (i == j)
continue;
tmp = INF;
rep(ii, , sz) {
if (T[tid].a[ii] != M[i])
continue;
rep(jj, , sz) {
if (jj==ii || T[tid].a[jj]!=M[j])
continue;
tmp = min(tmp, abs(jj-ii));
}
} if (tmp <= l)
return true;
}
} return false;
} void solve_(int pid) {
int c = ; printf("%d:", pid); P[pid].init();
rep(tid, , tn) {
if (judge(pid, tid)) {
if (c++)
putchar(',');
else
putchar(' ');
printf("%d", tid);
}
} putchar('\n');
} void solve() {
rep(i, , pn)
solve_(i);
} int main() {
ios::sync_with_stdio(false);
#ifndef ONLINE_JUDGE
freopen("data.in", "r", stdin);
freopen("data.out", "w", stdout);
#endif char ch; while () {
ch = getchar();
if (ch == '#')
break;
getchar();
if (ch == 'P') {
input_profile();
} else {
input_tile();
}
} solve(); #ifndef ONLINE_JUDGE
printf("time = %d.\n", (int)clock());
#endif return ;
}

数据发生器。

 import sys
import string
from random import randint def GenWords(n = 20):
ret = []
lc = list(string.lowercase)
llc = len(lc) - 1
for i in xrange(n):
length = randint(2, 5)
word = ""
for j in xrange(length):
idx = randint(0, llc)
word += lc[idx]
ret.append( word )
return ret def GenWord(word):
op = "!#$%^&*()023+-"
lop = len(op) - 1
ret = ""
for i in xrange(len(word)):
k = randint(0, 100)
if k%4 == 0:
idx = randint(0, lop)
ret += op[idx]
if k%4 == 1:
ret += word[i].upper()
else:
ret += word[i]
return ret def GenSpace():
op = " \t"
length = randint(1, 3)
ret = ""
for i in xrange(length):
k = randint(0, 1)
ret += op[k]
return ret def GenTile(wordList):
lw = len(wordList) - 1
ret = "T: "
nline = randint(1, 5)
lines = []
for i in xrange(nline):
nword = randint(2, 10)
line = ""
for i in xrange(nword):
line += GenSpace()
idx = randint(0, lw)
line += GenWord(wordList[idx])
lines.append(line)
ret = ret + "\n".join(lines) + "|"
return ret def GenPile(wordList):
lw = len(wordList) - 1
ret = "P: "
k = randint(0, 10)
ret += " %d" % k
nword = randint(2, 10)
for i in xrange(nword):
ret += GenSpace()
idx = randint(0, lw)
ret += wordList[idx]
return ret def GenData(fileName):
wordList = GenWords()
lw = len(wordList) - 1
with open(fileName, "w") as fout:
pn = randint(10, 20)
tn = randint(10, 30)
for i in xrange(pn):
line = GenPile(wordList)
fout.write("%s\n" % line)
for i in xrange(tn):
line = GenTile(wordList)
fout.write("%s\n" % line)
fout.write("#\n") def MovData(srcFileName, desFileName):
with open(srcFileName, "r") as fin:
lines = fin.readlines()
with open(desFileName, "w") as fout:
fout.write("".join(lines)) def CompData():
print "comp"
srcFileName = "F:\Qt_prj\hdoj\data.out"
desFileName = "F:\workspace\cpp_hdoj\data.out"
srcLines = []
desLines = []
with open(srcFileName, "r") as fin:
srcLines = fin.readlines()
with open(desFileName, "r") as fin:
desLines = fin.readlines()
n = min(len(srcLines), len(desLines))-1
for i in xrange(n):
ans2 = int(desLines[i])
ans1 = int(srcLines[i])
if ans1 > ans2:
print "%d: wrong" % i if __name__ == "__main__":
srcFileName = "F:\Qt_prj\hdoj\data.in"
desFileName = "F:\workspace\cpp_hdoj\data.in"
GenData(srcFileName)
MovData(srcFileName, desFileName)

【HDOJ】1648 Keywords的更多相关文章

  1. 【HDOJ】2222 Keywords Search

    AC自动机基础题. #include <iostream> #include <cstdio> #include <cstring> #include <cs ...

  2. 【HDU】2222 Keywords Search

    [算法]AC自动机 [题解]本题注意题意是多少关键字能匹配而不是能匹配多少次,以及可能有重复单词. 询问时AC自动机与KMP最大的区别是因为建立了trie,所以对于目标串T与自动机串是否匹配只需要直接 ...

  3. 【HDOJ】4729 An Easy Problem for Elfness

    其实是求树上的路径间的数据第K大的题目.果断主席树 + LCA.初始流量是这条路径上的最小值.若a<=b,显然直接为s->t建立pipe可以使流量最优:否则,对[0, 10**4]二分得到 ...

  4. 【HDOJ】【3506】Monkey Party

    DP/四边形不等式 裸题环形石子合并…… 拆环为链即可 //HDOJ 3506 #include<cmath> #include<vector> #include<cst ...

  5. 【HDOJ】【3516】Tree Construction

    DP/四边形不等式 这题跟石子合并有点像…… dp[i][j]为将第 i 个点开始的 j 个点合并的最小代价. 易知有 dp[i][j]=min{dp[i][j] , dp[i][k-i+1]+dp[ ...

  6. 【HDOJ】【3480】Division

    DP/四边形不等式 要求将一个可重集S分成M个子集,求子集的极差的平方和最小是多少…… 首先我们先将这N个数排序,容易想到每个自己都对应着这个有序数组中的一段……而不会是互相穿插着= =因为交换一下明 ...

  7. 【HDOJ】【2829】Lawrence

    DP/四边形不等式 做过POJ 1739 邮局那道题后就很容易写出动规方程: dp[i][j]=min{dp[i-1][k]+w[k+1][j]}(表示前 j 个点分成 i 块的最小代价) $w(l, ...

  8. 【HDOJ】【3415】Max Sum of Max-K-sub-sequence

    DP/单调队列优化 呃……环形链求最大k子段和. 首先拆环为链求前缀和…… 然后单调队列吧<_<,裸题没啥好说的…… WA:为毛手写队列就会挂,必须用STL的deque?(写挂自己弱……s ...

  9. 【HDOJ】【3530】Subsequence

    DP/单调队列优化 题解:http://www.cnblogs.com/yymore/archive/2011/06/22/2087553.html 引用: 首先我们要明确几件事情 1.假设我们现在知 ...

随机推荐

  1. Sublime Text 3 使用备注

    去年开始为了正规化自己的日常编辑工作,在dw,editplus,notap++,st里做了个选择,最终决定改曾经的dw为st. 毕竟dw是上个世纪的东西了,体积比较臃肿了.所以,在这里记录关于st的使 ...

  2. 用JS写的无缝滚动特效

    代码如下 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta ...

  3. Linux各发行版本 优缺点 简介

    2008.01.21 13:43 Linux最早由Linus Benedict Torvalds在1991年开始编写.在这之前,RichardStallman创建了Free SoftwareFound ...

  4. linux乱码问题:LANG变量的秘诀

    对于国内的Linux用户,经常烦恼的一个问题是:系统常常在需要显示中文的时候却显示成了乱码,而由于某些原因,需要英文界面的系统的时候,却苦于系统不能正常输入和显示中文.另外,由于大部分主要Linux发 ...

  5. Selenium+python+shell+crontab+firefox

    最近在尝试一个自动打卡的脚本,发现了几个问题,特此记录一下. 环境: Ubuntu 12.04.4 LTS selenium 2.43.0 firefox 32.0.3 1 本来机器上selenium ...

  6. 通过 struct 成员地址 获取 struct 结构体地址

    1. 问题描述: 现在定义了一个结构体: struct Foo { int a; int b; }; Foo foo; 假如由于函数传参等原因,现在程序只能拿到 foo.b 的地址,这时想通过某种方法 ...

  7. 【BZOJ 1067】 [SCOI2007]降雨量

    Description 我们常常会说这样的话:“X年是自Y年以来降雨量最多的”.它的含义是X年的降雨量不超过Y年,且对于任意Y<Z<X,Z年的降雨量严格小于X年.例如2002,2003,2 ...

  8. eval()字符串转成对象

    var s = "{a:1,b:2}"; console.log(typeof s); s = eval("(" + s + ")"); c ...

  9. uva 10986

    ford 超时  使用优先队列的Dijkstra 算法 //#include <cstdio> //#include <cstring> //#include <algo ...

  10. Unix/Linux下如何使用Vi编辑器

    vi 的工作模式 Vi 在初始启动后首先进入编辑模式,这时用户可以利用一些预先定义的按键来移动光标.删除文字. 复制或粘贴文字等.这些按键均是普通的字符,例如 l 是向右移动光标,相当于向右箭头键,k ...