Codeforces Round #177 (Div. 2)——A,B,C

A. Polo the Penguin and Segments
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Little penguin Polo adores integer segments, that is, pairs of integers [lr] (l ≤ r).

He has a set that consists of n integer segments: [l1r1], [l2r2], ..., [lnrn]. We know that no two segments of this set intersect. In one move Polo can either widen any segment of the set 1 unit to the left or 1 unit to the right, that is transform [lr] to either segment[l - 1; r], or to segment [lr + 1].

The value of a set of segments that consists of n segments [l1r1], [l2r2], ..., [lnrn] is the number of integers x, such that there is integer j, for which the following inequality holds, lj ≤ x ≤ rj.

Find the minimum number of moves needed to make the value of the set of Polo's segments divisible by k.

Input

The first line contains two integers n and k (1 ≤ n, k ≤ 105). Each of the following n lines contain a segment as a pair of integers li andri ( - 105 ≤ li ≤ ri ≤ 105), separated by a space.

It is guaranteed that no two segments intersect. In other words, for any two integers i, j (1 ≤ i < j ≤ n) the following inequality holds,min(ri, rj) < max(li, lj).

Output

In a single line print a single integer — the answer to the problem.

#include <cstdio>
#include <algorithm>
#include <iostream>
using namespace std;
const int maxn=100+5;
int l[maxn],r[maxn];
int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    int sum=0;
    for(int i=0; i<n; i++)
    {
        int l,r;
        scanf("%d%d",&l,&r);
        sum+=r-l+1;
    }
    if(sum%k==0) printf("0\n");
    else
    {
        int cnt=k-(sum%k);
        printf("%d\n",cnt);
    }
    return 0;
}

B. Polo the Penguin and Matrix
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Little penguin Polo has an n × m matrix, consisting of integers. Let's index the matrix rows from 1 to n from top to bottom and let's index the columns from 1 to m from left to right. Let's represent the matrix element on the intersection of row i and column j as aij.

In one move the penguin can add or subtract number d from some matrix element. Find the minimum number of moves needed to make all matrix elements equal. If the described plan is impossible to carry out, say so.

Input

The first line contains three integers nm and d (1 ≤ n, m ≤ 100, 1 ≤ d ≤ 104) — the matrix sizes and the d parameter. Next n lines contain the matrix: the j-th integer in the i-th row is the matrix element aij (1 ≤ aij ≤ 104).

Output

In a single line print a single integer — the minimum number of moves the penguin needs to make all matrix elements equal. If that is impossible, print "-1" (without the quotes).

#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=10000+5;
int a[maxn];
//找到数组中最中间的数即可
int main()
{
    int n,k,m;
    scanf("%d%d%d",&n,&m,&k);
    bool flag=true;
    scanf("%d",&a[0]);
    for(int i=1; i<n*m; i++)
        scanf("%d",&a[i]);
    sort(a,a+n*m);
    int ave=a[n*m/2],cnt=0;
    for(int i=0;i<n*m;i++)
    {
        int t=abs(ave-a[i]);
        if(t%k!=0) flag=false;
        else cnt+=t/k;
    }
    if(!flag) printf("-1\n");
    else printf("%d\n",cnt);
    return 0;
}

C. Polo the Penguin and Strings
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Little penguin Polo adores strings. But most of all he adores strings of length n.

One day he wanted to find a string that meets the following conditions:

  1. The string consists of n lowercase English letters (that is, the string's length equals n), exactly k of these letters are distinct.
  2. No two neighbouring letters of a string coincide; that is, if we represent a string as s = s1s2... sn, then the following inequality holds,si ≠ si + 1(1 ≤ i < n).
  3. Among all strings that meet points 1 and 2, the required string is lexicographically smallest.

Help him find such string or state that such string doesn't exist.

String x = x1x2... xp is lexicographically less than string y = y1y2... yq, if either p < q and x1 = y1, x2 = y2, ... , xp = yp, or there is such number r (r < p, r < q), that x1 = y1, x2 = y2, ... , xr = yr and xr + 1 < yr + 1. The characters of the strings are compared by their ASCII codes.

Input

A single line contains two positive integers n and k (1 ≤ n ≤ 106, 1 ≤ k ≤ 26) — the string's length and the number of distinct letters.

Output

In a single line print the required string. If there isn't such string, print "-1" (without the quotes).

#include <cstdio>
using namespace std;
//要使字典序最小,即ab尽可能的多
//再考虑k=1时的特殊情况即可
int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    int i=0;
    if(n<k)
    {
        printf("-1\n");
        return 0;
    }
    if(k==1)
    {
        if(n==1) printf("a");
        else printf("-1");
        printf("\n");
        return 0;
    }
    for(int i=1;i<=n+2-k;i++)
        if(i%2) printf("a");
        else printf("b");
    for(int i=2;i<k;i++)
        printf("%c",'a'+i);
    printf("\n");
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值