zoukankan      html  css  js  c++  java
  • CodeForces1006D-Two Strings Swaps

    D. Two Strings Swaps

    time limit per test

    2 seconds

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    You are given two strings aa and bb consisting of lowercase English letters, both of length nn. The characters of both strings have indices from 11 to nn, inclusive.

    You are allowed to do the following changes:

    • Choose any index ii (1≤i≤n1≤i≤n) and swap characters aiai and bibi;
    • Choose any index ii (1≤i≤n1≤i≤n) and swap characters aiai and an−i+1an−i+1;
    • Choose any index ii (1≤i≤n1≤i≤n) and swap characters bibi and bn−i+1bn−i+1.

    Note that if nn is odd, you are formally allowed to swap a⌈n2⌉a⌈n2⌉ with a⌈n2⌉a⌈n2⌉ (and the same with the string bb) but this move is useless. Also you can swap two equal characters but this operation is useless as well.

    You have to make these strings equal by applying any number of changes described above, in any order. But it is obvious that it may be impossible to make two strings equal by these swaps.

    In one preprocess move you can replace a character in aa with another character. In other words, in a single preprocess move you can choose any index ii (1≤i≤n1≤i≤n), any character cc and set ai:=cai:=c.

    Your task is to find the minimum number of preprocess moves to apply in such a way that after them you can make strings aa and bb equal by applying some number of changes described in the list above.

    Note that the number of changes you make after the preprocess moves does not matter. Also note that you cannot apply preprocess movesto the string bb or make any preprocess moves after the first change is made.

    Input

    The first line of the input contains one integer nn (1≤n≤1051≤n≤105) — the length of strings aa and bb.

    The second line contains the string aa consisting of exactly nn lowercase English letters.

    The third line contains the string bb consisting of exactly nn lowercase English letters.

    Output

    Print a single integer — the minimum number of preprocess moves to apply before changes, so that it is possible to make the string aa equal to string bb with a sequence of changes from the list above.

    Examples

    input

    Copy

    7
    abacaba
    bacabaa
    

    output

    Copy

    4
    

    input

    Copy

    5
    zcabd
    dbacz
    

    output

    Copy

    0
    

    Note

    In the first example preprocess moves are as follows: a1:=a1:='b', a3:=a3:='c', a4:=a4:='a' and a5:=a5:='b'. Afterwards, a=a="bbcabba". Then we can obtain equal strings by the following sequence of changes: swap(a2,b2)swap(a2,b2) and swap(a2,a6)swap(a2,a6). There is no way to use fewer than 44preprocess moves before a sequence of changes to make string equal, so the answer in this example is 44.

    In the second example no preprocess moves are required. We can use the following sequence of changes to make aa and bb equal: swap(b1,b5)swap(b1,b5), swap(a2,a4)swap(a2,a4).

    Codeforces (c) Copyright 2010-2018 Mike Mirzayanov

    The only programming contests Web 2.0 platform

    Server time: Jul/18/2018 00:49:41UTC+8 (d2).

    Desktop version, switch to mobile version.

    Privacy Policy

    题解:

    这个题其实就是枚举比较多。。。多考虑考虑;我们可以分别考虑每一个环(即a[i] a[n-i+1] b[i] b[n-i+1])所含字母种类,然后分别对每一种讨论即可;

    AC代码为:

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        ios::sync_with_stdio(false);
        cin.tie(0);
        int n;
        long long cnt=0;
        string s1,s2;
        cin>>n;
        cin>>s1>>s2;
        for(int i=0;i<n/2;i++)
        {
            set<int> s;
            s.insert(s1[i]-'a'+1);
            s.insert(s1[n-i-1]-'a'+1);
            s.insert(s2[i]-'a'+1);
            s.insert(s2[n-i-1]-'a'+1);
            if(s.size()==3)
            {
                if(s1[i]==s1[n-i-1]) cnt+=2;
                else cnt++;     
            }
            else if(s.size()==4) cnt+=2;
            else if(s.size()==2)
            {
                if(s1[i]==s1[n-i-1]&&s1[i]==s2[i] || s1[i]==s1[n-i-1]&&s1[i]==s2[n-i-1] || s1[i]==s2[i]&&s2[i]==s2[n-i-1] || s1[n-i-1]==s2[i]&&s2[i]==s2[n-i-1])
                    cnt++;  
            } 
        }
        if((n&1) && s1[n/2]!=s2[n/2]) cnt++;    
        cout<<cnt<<endl;    
        return 0;
    }

  • 相关阅读:
    Android中Handler原理
    微软柯塔娜(Cortana)的一句名言
    C# 单例模式的五种写法
    HTTP Status 404
    PLSQL中显示Cursor、隐示Cursor、动态Ref Cursor差别
    Android 开发之集成百度地图的定位与地图展示
    iOS知识点汇总
    优化报表系统结构之报表server计算
    淘宝中间的一像素线(手机端)
    解决yum升级的问题“There was a problem importing one of the Python modules”
  • 原文地址:https://www.cnblogs.com/csushl/p/9386511.html
Copyright © 2011-2022 走看看