PTA Digital Library

链接

https://pintia.cn/problem-sets/994805342720868352/problems/994805480801550336

题解

这题我用c++写的话,
最起码要150行+
但是py竟然用32行就实现了
太强了太强了
简单来说就是用一个dict(哈希)快速查找

代码

N = int(input())
dic = [{} for i in range(5)]
# title:0 author:1 puhlisher:2 year:3 key_words:4
for i in  range(N):
    index, title, author, key_words, publisher, year = [input() for i in range(6)]
    i=0
    for s in (title,author,publisher,year):
        if s in dic[i]:
            dic[i][s].append(index)
        else:
            dic[i][s]=[index]
        i=i+1
    for s in key_words.split():
        if s in dic[4]:
            dic[4][s].append(index)
        else:
            dic[4][s]=[index]
M = int(input())
for i in range(M):
    s = input()
    print(s)
    typ = int(s[0])
    s = s[3:]
    if typ==1: index=0
    if typ==2: index=1
    if typ==3: index=4
    if typ==4: index=2
    if typ==5: index=3
    if s in dic[index]:
        print(*sorted(dic[index][s]),sep='\n')
    else:
        print('Not Found')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值