524 - Longest Word In Dictionary Through Deleting

#medium

Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the given string characters. If there is more than one possible result, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string.

Example 1:
Input: s = "abpcplea", dictionary = ["ale","apple","monkey","plea"]
Output: "apple"

Example 2:
Input: s = "abpcplea", dictionary = ["a","b","c"]
Output: "a"

class Solution {
public:
    string findLongestWord(string s, vector<string>& dictionary) {
        string result = "";
        for ( int i = 0; i < dictionary.size(); i++ ) {
            string temp = dictionary[i];
            int cur_len = 0;
            for ( int j = 0; j < s.size(); j++ ) {
                if ( s[j] == temp[cur_len] ) cur_len++;
            }

            if ( cur_len == temp.size() ) {
                if ( result.size() < temp.size() ) {
                    result = temp;
                }
                else if ( result.size() == temp.size() ) {
                    if ( result > temp ) result = temp;
                }
            }

        }

        return result;
    }
};