Codeforces Round #277 (Div. 2) c

/**
 * @brief Codeforces Round #277 (Div. 2) c
 * @file c.c
 * @author 面码
 * @created 2014/11/14 13:39
 * @edited  2014/11/14 13:39
 * @type greedy
 *
 */
#include <stdio.h>

#define MAXN 100010
#define MAXC 26

#define max(a, b)  ((a) > (b) ? (a) : (b))
#define min(a, b)  ((a) > (b) ? (b) : (a)) 
#define abs(a)     ((a) >  0  ? (a) : (0 - (a)))

int n, p;
char str[MAXN];
int lft_mv, rht_mv, updown_mv, lft_max, rht_max;

int main(void){
    char *lft;        /*ptr to left*/
    char *rht;        /*ptr to right*/
    char *idx;        /*ptr to start pos*/
    char *curr;       /*ptr to char wait to convert*/
    int  dir;         /*convert str in right half or left half?*/
    int midl, midr;
    int ans;            

#ifdef DEBUG
    freopen("./in",  "r", stdin);
    freopen("./out", "w", stdout);
#endif

    scanf("%d%d%s", &n, &p, str);

    p--;                        /*p start from 0 now*/
    midr = n >> 1;

    if(n&0x1){
        dir = p > midr ? 1: 0;
    }else{
        midl = midr - 1;
        dir = p >= midr ? 1 : 0;
    }

#ifdef DEBUG
    printf("pos at %s\n", dir ? "right" : "left");
#endif
    
    lft = str;
    rht = str + n - 1;
    idx = str + p;                  

    lft_max = -1;
    rht_max = -1;
    updown_mv = 0;
    
    while(lft <= rht){          /*analysis str*/
        if(*lft != *rht){
                curr = dir ? rht : lft;
                if(curr >= idx){
                    rht_mv = curr - idx;
                    rht_max = max(rht_max, rht_mv);
                }
                if(curr <= idx){
                    lft_mv = idx - curr;
                    lft_max = max(lft_max, lft_mv);
                }
                updown_mv += min(abs(*lft - *rht), abs(MAXC - abs(*lft - *rht)));
        }
#ifdef DEBUG
        printf("rht_max = %d, lft_max = %d, updown_max = %d, lft = %p, rht = %p, idx = %p\n",                rht_max, lft_max, updown_mv, lft, rht, idx);
#endif
        lft++;
        rht--;
    }
    do{         /**analysis all cases here*/
        if(-1 == lft_max && -1 == rht_max){
                    ans = 0;
                    break;
        }

        if(-1 == lft_max){
            ans = rht_max + updown_mv;
            break;
        }

        if(-1 == rht_max){
            ans = lft_max + updown_mv;
            break;
        }
        
        ans = (lft_max < rht_max ? (lft_max << 1) +                  rht_max : (rht_max << 1) + lft_max) + updown_mv;
    
    }while(0);
    
    printf("%d\n", ans); 
            
    return 0;
}
时间: 2024-10-20 19:20:27

Codeforces Round #277 (Div. 2) c的相关文章

【codeforces】Codeforces Round #277 (Div. 2) 解读

门户:Codeforces Round #277 (Div. 2) 486A. Calculating Function 裸公式= = #include <cstdio> #include <cstring> #include <algorithm> using namespace std ; typedef long long LL ; LL n ; int main () { while ( ~scanf ( "%I64d" , &n )

贪心+构造 Codeforces Round #277 (Div. 2) C. Palindrome Transformation

题目传送门 1 /* 2 贪心+构造:因为是对称的,可以全都左一半考虑,过程很简单,但是能想到就很难了 3 */ 4 /************************************************ 5 Author :Running_Time 6 Created Time :2015-8-3 9:14:02 7 File Name :B.cpp 8 *************************************************/ 9 10 #include

Codeforces Round #277 (Div. 2) d

/**  * @brief Codeforces Round #277 (Div. 2) d  * @file d.cpp  * @author 面码  * @created 2014/11/17 14:53  * @edited  2014/11/17 14:53  * @type dfs dp  *   *  */ #include <cstdio> #include <vector> #define MOD 1000000007 #define MAXN 2014 using

Codeforces Round #277 (Div. 2) a

/**  * @brief Codeforces Round #277 (Div. 2) a  * @author xiyan  * @created 2014/11/13 11:23  * @edited  2014/11/13 11:24  * @type math   *   *  */ #include <stdio.h> long long int a; int main() {     scanf("%I64d", &a);     printf(&qu

Codeforces Round #277 (Div. 2) b

/**  * @brief Codeforces Round #277 (Div. 2) b  * @author 面码  * @created 2014/11/13 14:01  * @edited  2014/11/13 14:01  * @type greedy  * @TODO less space and time cost with bitmap   *   *  */ #include <stdio.h> #define MAXN 110 //int a[MAXN][MAXN];

codeforces水题100道 第十题 Codeforces Round #277 (Div. 2) A. Calculating Function (math)

题目链接:www.codeforces.com/problemset/problem/486/A题意:求表达式f(n)的值.(f(n)的表述见题目)C++代码: #include <iostream> using namespace std; long long f(long long n) { if (n % 2 == 0) return n / 2; else return n / 2 - n; } int main() { long long n; cin >> n; cou

Codeforces Round #277 (Div. 2)A. Calculating Function 水

A. Calculating Function For a positive integer n let's define a function f: f(n) =  - 1 + 2 - 3 + .. + ( - 1)nn Your task is to calculate f(n) for a given integer n. Input The single line contains the positive integer n (1 ≤ n ≤ 1015). Output Print f

Codeforces Round #277 (Div. 2) D. Valid Sets DP

D. Valid Sets As you know, an undirected connected graph with n nodes and n - 1 edges is called a tree. You are given an integer d and a tree consisting of n nodes. Each node i has a value ai associated with it. We call a set S of tree nodes valid if

Codeforces Round #277 (Div. 2)

整理上次写的题目: A: For a positive integer n let's define a function f: f(n) =  - 1 + 2 - 3 + .. + ( - 1)nn Your task is to calculate f(n) for a given integer n. Input The single line contains the positive integer n (1 ≤ n ≤ 10^15). 题目简洁.可以看出规律...分下奇偶就可以了.