当前位置: 首页 > article >正文

[TJOI2010] 阅读理解 **STL**Tire树**

[TJOI2010] 阅读理解

题目链接:

https://www.luogu.com.cn/problem/P3879

题目描述

在这里插入图片描述

思路1 (STL大法)

对每个单词,用map来映射存储它所在的短文编号
set的好处:
-------1. 存储直接自动排序,操作简单(忽略效率)
-------2. 可能一个单词在一篇短文中出现多次,这里去重操作set自带实现

#include <iostream>
#include <set>
#include <map>
#include <string>
using namespace std;
map<string, set<int> > m;

int main() {
	int n;
	cin >> n;
	for(int i = 1; i <= n; i++) {
		int l;
		cin >> l;
		for(int j = 0; j < l; j++) {
			string word;
			cin >> word;
			m[word].insert(i);
		}
	}
	int p;
	cin >> p;
	while(p --) {
		string t;
		cin >> t;
		if(m.count(t)) {
			for(auto it = m[t].begin(); it != m[t].end(); it++)
				cout << *it << " ";
			cout << endl;	
		}
	}

	return 0;
}

思路二(Tire树)

#include<cstdio>
#include<iostream>
#include<algorithm>
#include <bitset>

using namespace std;

int n,m;
char s[1001];
int l;
int tot=0;
int tri[300007][26];
bitset<1001> b[500007];



inline void insert(char *s,int x){
    int rt=0;
    for(int i=0;s[i];i++){
        int v=s[i]-'a';
        if(!tri[rt][v]){
            tri[rt][v]=++tot;
        }
        rt=tri[rt][v];
    }
    b[rt][x]=1;
}

inline void query(char *s){
    int rt=0;
    for(int i=0;s[i];i++){
        int v=s[i]-'a';
        if(!tri[rt][v]){
            cout<<' '<<endl;
            return;
        }
        rt=tri[rt][v];
    }
    for(int i=1;i<=n;i++){
        if(b[rt][i]==1){
            cout<<i<<' ';
        }
    }
    cout<<endl;
}

int main(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>l;
        for(int j=1;j<=l;j++){
            cin>>s;
            insert(s,i);
        }
    }
    cin>>m;
    for(int i=1;i<=m;i++){
        cin>>s;
        query(s);
    }
    return 0;
}

http://www.kler.cn/a/273398.html

相关文章:

  • 1范数和无穷范数定义、对偶关系、1范数和无穷范数是凸函数的详细证明过程
  • 我们来学mysql -- 同时使用 AND 和 OR 查询错误(填坑篇)
  • 【react使用AES对称加密的实现】
  • VSCode 1.82之后的vscode server离线安装
  • 40.第二阶段x86游戏实战2-初识lua
  • C++和OpenGL实现3D游戏编程【连载17】——着色器进阶
  • 003——移植鸿蒙
  • Coursera上Golang专项课程3:Concurrency in Go 学习笔记(完结)
  • LLM 构建Data Multi-Agents 赋能数据分析平台的实践之②:数据治理之一
  • 旋转花键的制造工艺
  • 在ubuntu下安装MQTT 服务
  • 将VSCode添加至右键的菜单栏
  • 使用 Redisson 实现分布式 CountDownLatch,如何使用RCountDownLatch实现内外网数据互通的超时控制?
  • ROS2纯跟踪实现(C++)
  • MYSQL日志 redo_log更新流程 bin_log以及bin_log数据恢复
  • STM32CubeIDE基础学习-BEEP蜂鸣器实验
  • 【LabVIEW FPGA入门】并行执行
  • 未来之路:Python PDF处理技术的革新
  • Redis - 缓存访问 缓存穿透 缓存击穿 缓存雪崩
  • Docker部署TeamCity来完成内部CI、CD流程
  • AJAX-原理XMLHttpRequest
  • yocto编译测试
  • 部署Zabbix Agents添加使能监测服务器_Windows平台_MSI/Archive模式
  • 二、Eureka注册中心
  • 计算机视觉之三维重建(1)---摄像机几何
  • MacOS本地使用Docker Desktop 搭建Minio容器