zoukankan      html  css  js  c++  java
  • [HIHO1323]回文字符串(区间dp)

    题目链接:http://hihocoder.com/problemset/problem/1323

    思路:区间dp,按照区间长度枚举所有区间和区间的起始位置。这时也可获取到区间的末位,比对这两个字符是否相同,如果相同可以更新dp(i,j)=max(dp(i+1,j-1), dp(i,j))。否则,更新三种操作:
    dp(i,j)=min(dp(i+1,j),dp(i,j-1),dp(i+1,j-1))+1

     1     /*
     2 ━━━━━┒ギリギリ♂ eye!
     3 ┓┏┓┏┓┃キリキリ♂ mind!
     4 ┛┗┛┗┛┃\○/
     5 ┓┏┓┏┓┃ /
     6 ┛┗┛┗┛┃ノ)
     7 ┓┏┓┏┓┃
     8 ┛┗┛┗┛┃
     9 ┓┏┓┏┓┃
    10 ┛┗┛┗┛┃
    11 ┓┏┓┏┓┃
    12 ┛┗┛┗┛┃
    13 ┓┏┓┏┓┃
    14 ┃┃┃┃┃┃
    15 ┻┻┻┻┻┻
    16 */
    17 #include <algorithm>
    18 #include <iostream>
    19 #include <iomanip>
    20 #include <cstring>
    21 #include <climits>
    22 #include <complex>
    23 #include <fstream>
    24 #include <cassert>
    25 #include <cstdio>
    26 #include <bitset>
    27 #include <vector>
    28 #include <deque>
    29 #include <queue>
    30 #include <stack>
    31 #include <ctime>
    32 #include <set>
    33 #include <map>
    34 #include <cmath>
    35 using namespace std;
    36 #define fr first
    37 #define sc second
    38 #define cl clear
    39 #define BUG puts("here!!!")
    40 #define W(a) while(a--)
    41 #define pb(a) push_back(a)
    42 #define Rint(a) scanf("%d", &a)
    43 #define Rll(a) scanf("%lld", &a)
    44 #define Rs(a) scanf("%s", a)
    45 #define Cin(a) cin >> a
    46 #define FRead() freopen("in", "r", stdin)
    47 #define FWrite() freopen("out", "w", stdout)
    48 #define Rep(i, len) for(int i = 0; i < (len); i++)
    49 #define For(i, a, len) for(int i = (a); i < (len); i++)
    50 #define Cls(a) memset((a), 0, sizeof(a))
    51 #define Clr(a, x) memset((a), (x), sizeof(a))
    52 #define Full(a) memset((a), 0x7f7f7f, sizeof(a))
    53 #define lrt rt << 1
    54 #define rrt rt << 1 | 1
    55 #define pi 3.14159265359
    56 #define RT return
    57 #define lowbit(x) x & (-x)
    58 #define onenum(x) __builtin_popcount(x)
    59 typedef long long LL;
    60 typedef long double LD;
    61 typedef unsigned long long ULL;
    62 typedef pair<int, int> pii;
    63 typedef pair<string, int> psi;
    64 typedef pair<LL, LL> pll;
    65 typedef map<string, int> msi;
    66 typedef vector<int> vi;
    67 typedef vector<LL> vl;
    68 typedef vector<vl> vvl;
    69 typedef vector<bool> vb;
    70 
    71 const int maxn = 110;
    72 
    73 int dp[maxn][maxn];
    74 char s[maxn];
    75 int n;
    76 
    77 int main() {
    78     // FRead();
    79     while(~Rs(s+1)) {
    80         n = strlen(s+1);
    81         Cls(dp);
    82         For(k, 1, n+1) {
    83             For(i, 1, n-k+1) {
    84                 int j = i + k;
    85                 dp[i][j] = n;
    86                 if(s[i] == s[j]) dp[i][j] = min(dp[i][j], dp[i+1][j-1]);
    87                 dp[i][j] = min(dp[i+1][j]+1, dp[i][j]);
    88                 dp[i][j] = min(dp[i][j-1]+1, dp[i][j]);
    89                 dp[i][j] = min(dp[i+1][j-1]+1, dp[i][j]);
    90             }
    91         }
    92         printf("%d
    ", dp[1][n]);
    93     }
    94     RT 0;
    95 }
  • 相关阅读:
    WPF Caliburn 学习笔记(五)HelloCaliburn
    MSDN 教程短片 WPF 20(绑定3ObjectDataProvider)
    MSDN 教程短片 WPF 23(3D动画)
    比赛总结一
    HDU3686 Traffic Real Time Query System
    HDU3954 Level up
    EOJ382 Match Maker
    UESTC1565 Smart Typist
    HDU3578 Greedy Tino
    ZOJ1975 The Sierpinski Fractal
  • 原文地址:https://www.cnblogs.com/kirai/p/5632737.html
Copyright © 2011-2022 走看看