zoukankan      html  css  js  c++  java
  • Codeforces Round #418 (Div. 2) C

    Description

    Nadeko's birthday is approaching! As she decorated the room for the party, a long garland of Dianthus-shaped paper pieces was placed on a prominent part of the wall. Brother Koyomi will like it!

    Still unsatisfied with the garland, Nadeko decided to polish it again. The garland has n pieces numbered from 1 to n from left to right, and thei-th piece has a colour si, denoted by a lowercase English letter. Nadeko will repaint at most m of the pieces to give each of them an arbitrary new colour (still denoted by a lowercase English letter). After this work, she finds out all subsegments of the garland containing pieces of only colour c — Brother Koyomi's favourite one, and takes the length of the longest among them to be the Koyomity of the garland.

    For instance, let's say the garland is represented by "kooomo", and Brother Koyomi's favourite colour is "o". Among all subsegments containing pieces of "o" only, "ooo" is the longest, with a length of 3. Thus the Koyomity of this garland equals 3.

    But problem arises as Nadeko is unsure about Brother Koyomi's favourite colour, and has swaying ideas on the amount of work to do. She hasq plans on this, each of which can be expressed as a pair of an integer mi and a lowercase letter ci, meanings of which are explained above. You are to find out the maximum Koyomity achievable after repainting the garland according to each plan.

    Input

    The first line of input contains a positive integer n (1 ≤ n ≤ 1 500) — the length of the garland.

    The second line contains n lowercase English letters s1s2... sn as a string — the initial colours of paper pieces on the garland.

    The third line contains a positive integer q (1 ≤ q ≤ 200 000) — the number of plans Nadeko has.

    The next q lines describe one plan each: the i-th among them contains an integer mi (1 ≤ mi ≤ n) — the maximum amount of pieces to repaint, followed by a space, then by a lowercase English letter ci — Koyomi's possible favourite colour.

    Output

    Output q lines: for each work plan, output one line containing an integer — the largest Koyomity achievable after repainting the garland according to it.

    Examples
    input
    6
    koyomi
    3
    1 o
    4 o
    4 m
    output
    3
    6
    5
    input
    15
    yamatonadeshiko
    10
    1 a
    2 a
    3 a
    4 a
    5 a
    1 b
    2 b
    3 b
    4 b
    5 b
    output
    3
    4
    5
    7
    8
    1
    2
    3
    4
    5
    input
    10
    aaaaaaaaaa
    2
    10 b
    10 z
    output
    10
    10
    Note

    In the first sample, there are three plans:

    • In the first plan, at most 1 piece can be repainted. Repainting the "y" piece to become "o" results in "kooomi", whose Koyomity of 3 is the best achievable;
    • In the second plan, at most 4 pieces can be repainted, and "oooooo" results in a Koyomity of 6;
    • In the third plan, at most 4 pieces can be repainted, and "mmmmmi" and "kmmmmm" both result in a Koyomity of 5.

    题意:等下。。这个不是很好说

    解法:等下。。这个不是很好说(预处理)

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 #define ll long long
     4 const int MAXN=123456;
     5 int a,b,c;
     6 int flag;
     7 int n, m;
     8 int ze=0;
     9 int t;
    10 vector<int>q;
    11 bool cmd(int x,int y)
    12 {
    13     return x>y;
    14 }
    15 int dp[MAXN][100];
    16 int x[100][MAXN];
    17 int y[100][MAXN];
    18 string s;
    19 string str;
    20 void solve()
    21 {
    22     dp[0][s[0] - 'a'] = 1;
    23     for(int i = 1; i < n; i++)
    24     {
    25         for(int j = 0; j < 27; j++)
    26         {
    27             if(j == s[i] - 'a')
    28             {
    29                 dp[i][j] = dp[i - 1][j] + 1;
    30             }
    31             else dp[i][j] = dp[i - 1][j];
    32         }
    33     }
    34     for(int i = 0; i < 27; i++)
    35     {
    36         for(int j = 0; j < n; j++)
    37         {
    38             for(int k = j; k < n; k++)
    39             {
    40                 int cnt = dp[k][i] - (j == 0 ? 0 : dp[j - 1][i]);
    41                 x[i][k - j + 1] = max(x[i][k - j + 1], cnt);
    42             }
    43         }
    44     }
    45     for(int i = 0; i < 27; i++)
    46     {
    47         for(int j = 0; j < n; j++)
    48         {
    49             for(int k = 1; k <= n; k++)
    50             {
    51                 if(x[i][k] + j >= k)
    52                 {
    53                     y[i][j] = max(y[i][j], k);
    54                 }
    55             }
    56         }
    57     }
    58 }
    59 int main()
    60 {
    61     cin>>n>>s;
    62     solve();
    63     cin>>t;
    64     while(t--)
    65     {
    66         char ss;
    67         cin>>a>>ss;
    68         if(a>=n)
    69         {
    70             cout<<n<<endl;
    71         }
    72         else
    73         {
    74             cout<<y[ss-'a'][a]<<endl;
    75         }
    76     }
    77     return 0;
    78 }
  • 相关阅读:
    Inno Setup 6.0.4
    使用Microsoft Enterprise Library 5.0记录日志信息
    Log4net用法
    继续接着上一篇写:使用C#实现DHT磁力搜索的BT种子后端管理程序+数据库设计(开源)[搜片神器]
    磁力王:种子磁力搜索神器使用教程
    C# WebBrowser 网页缩放的方法
    Mysql5.7修改root密码教程
    【MAVEN】maven项目下载更新pom jar包速度慢 解决方案
    C# DataGridView自动保存列的宽度和位置
    Java实现敏感词过滤
  • 原文地址:https://www.cnblogs.com/yinghualuowu/p/6962122.html
Copyright © 2011-2022 走看看