題目連結

從頭枚舉,你發現什麼?

AC Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifdef LOCAL
#include <bits/stdc++.h>
using namespace std;

// tree node stuff here...
#endif

static int __initialSetup = []()
{
    std::ios::sync_with_stdio(false);
    cin.tie(NULL);
    return 0;
}
();

// handle special cases first
// [], "", ...
// range of input?
class Solution
{
private:
    bool isPalindrome(string s)
    {
        int n = (int)s.length();
        for (int i = 0; i < n / 2; i++) {
            if (s[i] != s[n - 1 - i])
                return false;
        }
        return true;
    }

public:
    string shortestPalindrome(string s)
    {
        for (int i = (int)s.length(); i >= 1; i--) {
            // [0, i]
            if (isPalindrome(s.substr(0, i))) {
                string front = s.substr(i);
                reverse(front.begin(), front.end());
                return front + s;
            }
        }

        return s;
    }
};

#ifdef LOCAL
int main()
{
    return 0;
}
#endif