634 · 单词矩阵

2024-05-26 04:12
文章标签 单词 矩阵 634

本文主要是介绍634 · 单词矩阵,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

链接:LintCode 炼码 - ChatGPT!更高效的学习体验!

. - 力扣(LeetCode)

题解:

class Solution {
public:
struct Trie {Trie() {next.resize(26, nullptr);end = false;}
std::vector<Trie*> next;
bool end;
};
Trie* insert_trie(vector<string>& words) {Trie* root = new (std::nothrow)Trie;for (auto& word : words) {Trie* cur = root;for (int i = 0; i < word.size(); ++i) {if (cur->next[word[i]-'a'] == nullptr) {cur->next[word[i]-'a'] = new (std::nothrow) Trie;}cur = cur->next[word[i]-'a'];}cur->end = true;}return root;
}vector<string> maxRectangle(vector<string>& words) {if (words.size() <= 0) {return {};}Trie* root = insert_trie(words);if (!root) {return {};}// 构建相同长度的表int max_word_len = 0; // std::unordered_map<int, std::unordered_set<string>> len2words;for (auto& word : words) {int len = word.size();max_word_len = max(max_word_len, len);len2words[len].insert(word);}// 回溯// 最终结果,总共字符串的长度int max_len = 0;// 记录回溯路径std::vector<string> path;// 记录最终结果std::vector<string> result;for (auto& entry : len2words) {path.clear();dfs(root, entry.first, entry.second, path, result, max_len, max_word_len);}return result;}
private:void dfs(Trie* root, int len, unordered_set<string>& words,std::vector<std::string>& path,std::vector<std::string>& result,int& max_len,int max_word_len) {// 如果当前字符的长度*宽度比最大的小,直接返回,剪枝if (len * len <= max_len) {return;}for (auto& word : words) {// 把当前字符追加到路径 中path.push_back(word);// 判断已经追加的字符串是否是正确额度auto valid = is_valid(path, root);if (valid.first) {// 获得字符串矩形的面积int tmp_len = path[0].size() * path.size();if (valid.second && tmp_len > max_len) {// 记录最大面积max_len = tmp_len;std::vector<string> tmp(path);result = std::move(tmp);}// 递归下一层dfs(root, len, words, path, result, max_len, max_word_len);}// 回溯path.pop_back();}}std::pair<int, int> is_valid(std::vector<std::string>& path, Trie* root) {int word_len = path[0].size();int row_size = path.size();bool allend = true;/*for (auto& tmp : path) {cout << tmp << " ";}cout << endl;*/// 判断字符矩阵,按照列查看是否,字符串在字典树中for (int i = 0; i < word_len; ++i) {Trie* cur = root;for (int j = 0; j < row_size; ++j) {if (cur->next[path[j][i]-'a'] == nullptr) {return std::pair<int, int>(false, false);}cur = cur->next[path[j][i]-'a'];}// 如果当前字符不是结尾if (!cur->end) {allend = false;}}//cout << " ====" << endl;return std::pair<int, int>(true , allend);}
};

这篇关于634 · 单词矩阵的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1003488

相关文章

linux报错INFO:task xxxxxx:634 blocked for more than 120 seconds.三种解决方式

《linux报错INFO:taskxxxxxx:634blockedformorethan120seconds.三种解决方式》文章描述了一个Linux最小系统运行时出现的“hung_ta... 目录1.问题描述2.解决办法2.1 缩小文件系统缓存大小2.2 修改系统IO调度策略2.3 取消120秒时间限制3

hdu 4565 推倒公式+矩阵快速幂

题意 求下式的值: Sn=⌈ (a+b√)n⌉%m S_n = \lceil\ (a + \sqrt{b}) ^ n \rceil\% m 其中: 0<a,m<215 0< a, m < 2^{15} 0<b,n<231 0 < b, n < 2^{31} (a−1)2<b<a2 (a-1)^2< b < a^2 解析 令: An=(a+b√)n A_n = (a +

hdu 6198 dfs枚举找规律+矩阵乘法

number number number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description We define a sequence  F : ⋅   F0=0,F1=1 ; ⋅   Fn=Fn

每日一练7:简写单词(含链接)

1.链接 简写单词_牛客题霸_牛客网 2.题目 3.代码1(错误经验) #include <iostream>#include <string>using namespace std;int main() {string s;string ret;int count = 0;while(cin >> s)for(auto a : s){if(count == 0){if( a <=

线性代数|机器学习-P35距离矩阵和普鲁克问题

文章目录 1. 距离矩阵2. 正交普鲁克问题3. 实例说明 1. 距离矩阵 假设有三个点 x 1 , x 2 , x 3 x_1,x_2,x_3 x1​,x2​,x3​,三个点距离如下: ∣ ∣ x 1 − x 2 ∣ ∣ 2 = 1 , ∣ ∣ x 2 − x 3 ∣ ∣ 2 = 1 , ∣ ∣ x 1 − x 3 ∣ ∣ 2 = 6 \begin{equation} ||x

【线性代数】正定矩阵,二次型函数

本文主要介绍正定矩阵,二次型函数,及其相关的解析证明过程和各个过程的可视化几何解释(深蓝色字体)。 非常喜欢清华大学张颢老师说过的一段话:如果你不能用可视化的方式看到事情的结果,那么你就很难对这个事情有认知,认知就是直觉,解析的东西可以让你理解,但未必能让你形成直觉,因为他太反直觉了。 正定矩阵 定义 给定一个大小为 n×n 的实对称矩阵 A ,若对于任意长度为 n 的非零向量 ,有 恒成

python科学计算:NumPy 线性代数与矩阵操作

1 NumPy 中的矩阵与数组 在 NumPy 中,矩阵实际上是一种特殊的二维数组,因此几乎所有数组的操作都可以应用到矩阵上。不过,矩阵运算与一般的数组运算存在一定的区别,尤其是在点积、乘法等操作中。 1.1 创建矩阵 矩阵可以通过 NumPy 的 array() 函数创建。矩阵的形状可以通过 shape 属性来访问。 import numpy as np# 创建一个 2x3 矩阵mat

【UVA】10003-Cutting Sticks(动态规划、矩阵链乘)

一道动态规划题,不过似乎可以用回溯水过去,回溯的话效率很烂的。 13988658 10003 Cutting Sticks Accepted C++ 1.882 2014-08-04 09:26:49 AC代码: #include<cstdio>#include<cstring>#include<iostream>#include<algorithm>#include

算法练习题17——leetcode54螺旋矩阵

题目描述 给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。  代码 import java.util.*;class Solution {public List<Integer> spiralOrder(int[][] matrix) {// 用于存储螺旋顺序遍历的结果List<Integer> result = new ArrayList

线性代数 第六讲 特征值和特征向量_相似对角化_实对称矩阵_重点题型总结详细解析

文章目录 1.特征值和特征向量1.1 特征值和特征向量的定义1.2 特征值和特征向量的求法1.3 特征值特征向量的主要结论 2.相似2.1 相似的定义2.2 相似的性质2.3 相似的结论 3.相似对角化4.实对称矩阵4.1 实对称矩阵的基本性质4.2 施密特正交化 5.重难点题型总结5.1 判断矩阵能否相似对角化5.2 已知两个矩阵相似,求某个矩阵中的未知参数5.3 相似时,求可逆矩阵P,使