前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0388 - Longest Absolute File Path

LeetCode 0388 - Longest Absolute File Path

作者头像
Reck Zhang
发布2021-08-11 11:06:55
2450
发布2021-08-11 11:06:55
举报
文章被收录于专栏:Reck Zhang

Longest Absolute File Path

Desicription

Suppose we abstract our file system by a string in the following manner:

The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents:

代码语言:javascript
复制
dir
    subdir1
    subdir2
        file.ext

The directory dir contains an empty sub-directory subdir1 and a sub-directory subdir2 containing a file file.ext.

The string "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext" represents:

代码语言:javascript
复制
dir
    subdir1
        file1.ext
        subsubdir1
    subdir2
        subsubdir2
            file2.ext

The directory dir contains two sub-directories subdir1 and subdir2. subdir1 contains a file file1.ext and an empty second-level sub-directory subsubdir1. subdir2 contains a second-level sub-directory subsubdir2 containing a file file2.ext.

We are interested in finding the longest (number of characters) absolute path to a file within our file system. For example, in the second example above, the longest absolute path is "dir/subdir2/subsubdir2/file2.ext", and its length is 32 (not including the double quotes).

Given a string representing the file system in the above format, return the length of the longest absolute path to file in the abstracted file system. If there is no file in the system, return 0.

Note:

  • The name of a file contains at least a . and an extension.
  • The name of a directory or sub-directory will not contain a ..
  • Time complexity required: O(n) where n is the size of the input string.

Notice that a/aa/aaa/file1.txt is not the longest file path, if there is another path aaaaaaaaaaaaaaaaaaaaa/sth.png.

Solution

代码语言:javascript
复制
class Solution {
public:
    int lengthLongestPath(std::string input) {
        input += '\n';
        std::vector<int> wordCount = std::vector<int>{};
        int maxLength = 0;
        bool isFile = false;
        int currentWordCount = 0;
        int currentLevel = 0;
        for(int i = 0; i < input.size(); i++) {
            switch(input[i]){
                case '\n': {
                    if(wordCount.size() == currentLevel) {
                        wordCount.push_back(currentWordCount);
                    } else {
                        wordCount[currentLevel] = currentWordCount;
                    }
                    if(isFile) {
                        int sum = 0;
                        for(int j = 0; j <= currentLevel; j++) {
                            sum += wordCount[j];
                        }
                        sum += currentLevel;
                        maxLength = maxLength < sum ? sum : maxLength;
                        isFile = false;
                    }
                    currentLevel = 0;
                    currentWordCount = 0;
                    break;
                }
                case '\t': {
                    while(input[i] == '\t') {
                        i++;
                        currentLevel++;
                    }
                    i--;
                    break;
                }

                default: {
                    if(input[i] == '.') {
                        isFile = true;
                    }
                    currentWordCount++;
                    break;
                }
            }
        }
        return maxLength;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-09-02,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Longest Absolute File Path
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档