• Codeforces Round #259 (Div. 2)


    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Twilight Sparkle once got a crystal from the Crystal Mine. A crystal of size n (n is odd; n > 1) is an n × n matrix with a diamond inscribed into it.

    You are given an odd integer n. You need to draw a crystal of size n. The diamond cells of the matrix should be represented by character "D". All other cells of the matrix should be represented by character "*". Look at the examples to understand what you need to draw.

    Input

    The only line contains an integer n (3 ≤ n ≤ 101; n is odd).

    Output

    Output a crystal of size n.

    Sample test(s)
    input
    3
    output
    *D*
    DDD
    *D*
    input
    5
    output
    **D**
    *DDD*
    DDDDD
    *DDD*
    **D**
    input
    7
    output
    ***D***
    **DDD**
    *DDDDD*
    DDDDDDD
    *DDDDD*
    **DDD**
    ***D***

     简单模拟,直接用一个二维数组先打上'*',再打上'D'。

     1 #include <bits/stdc++.h>
     2 #define _ ios_base::sync_with_stdio(0);cin.tie(0);
     3 
     4 using namespace std;
     5 char M[111][111];
     6 int n,i,j,l,r,m;
     7 int main() { _
     8 for(i=0;i<111;++i)for(j=0;j<111;++j)M[i][j] = '*';
     9 scanf("%d",&n);
    10 l = (n+1)>>1;
    11 m = l;
    12 l++;
    13 for(i=1;i<=m;++i)
    14 {
    15     l--;
    16     r = n + 1 - l;
    17     for(j=l;j<=r;++j)M[i][j] = 'D';
    18 }
    19 for(;i<=n;++i)
    20 {
    21     l++;
    22     r = n + 1 - l;
    23     for(j=l;j<=r;++j)M[i][j] = 'D';
    24 }
    25 for(i=1;i<=n;++i){for(j=1;j<=n;++j)putchar(M[i][j]);
    26 printf("
    ");}
    27 //printf("
    ");
    28     return 0;
    29 }
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    One day, Twilight Sparkle is interested in how to sort a sequence of integers a1, a2, ..., an in non-decreasing order. Being a young unicorn, the only operation she can perform is a unit shift. That is, she can move the last element of the sequence to its beginning:

    a1, a2, ..., an → an, a1, a2, ..., an - 1.

    Help Twilight Sparkle to calculate: what is the minimum number of operations that she needs to sort the sequence?

    Input

    The first line contains an integer n (2 ≤ n ≤ 105). The second line contains n integer numbers a1, a2, ..., an (1 ≤ ai ≤ 105).

    Output

    If it's impossible to sort the sequence output -1. Otherwise output the minimum number of operations Twilight Sparkle needs to sort it.

    Sample test(s)
    input
    2
    2 1
    output
    1
    input
    3
    1 3 2
    output
    -1
    input
    2
    1 2
    output
    0

     模拟,观察原序列是否最多由一个或两个非降序列构成,否则无解。如果是一个,则无需移动;如果是两个,则是否满足后非降序列尾元素不大于前非降序列首元素:如果是则需移动的步数等于后非降序列元素个数;否则无解。

     1 #include <bits/stdc++.h>
     2 #define _ ios_base::sync_with_stdio(0);cin.tie(0);
     3 
     4 using namespace std;
     5 int a[100100];
     6 int n,i,j,l,r,m;
     7 int main() { _
     8 scanf("%d",&n);
     9 for(i=1;i<=n;++i)scanf("%d",&a[i]);
    10 for(i=2;i<=n;++i)
    11 if(a[i] < a[i-1])break;
    12 if(i > n)
    13 {
    14     printf("0
    ");
    15     return 0;
    16 }
    17 if(i == n)
    18 {
    19     if(a[n] <= a[1])printf("1
    ");
    20     else printf("-1
    ");
    21     return 0;
    22 }
    23 for(j=i+1;j<=n;++j)
    24 if(a[j] < a[j-1])break;
    25 if(j <= n)
    26 {
    27     printf("-1
    ");
    28     return 0;
    29 }
    30 else
    31 {
    32     if(a[n] <= a[1])printf("%d
    ",n-i+1);
    33     else printf("-1
    ");
    34 }
    35     return 0;
    36 }
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Twilight Sparkle was playing Ludo with her friends Rainbow Dash, Apple Jack and Flutter Shy. But she kept losing. Having returned to the castle, Twilight Sparkle became interested in the dice that were used in the game.

    The dice has m faces: the first face of the dice contains a dot, the second one contains two dots, and so on, the m-th face contains mdots. Twilight Sparkle is sure that when the dice is tossed, each face appears with probability . Also she knows that each toss is independent from others. Help her to calculate the expected maximum number of dots she could get after tossing the dice n times.

    Input

    A single line contains two integers m and n (1 ≤ m, n ≤ 105).

    Output

    Output a single real number corresponding to the expected maximum. The answer will be considered correct if its relative or absolute error doesn't exceed 10  - 4.

    Sample test(s)
    input
    6 1
    output
    3.500000000000
    input
    6 3
    output
    4.958333333333
    input
    2 2
    output
    1.750000000000
    Note

    Consider the third test example. If you've made two tosses:

    1. You can get 1 in the first toss, and 2 in the second. Maximum equals to 2.
    2. You can get 1 in the first toss, and 1 in the second. Maximum equals to 1.
    3. You can get 2 in the first toss, and 1 in the second. Maximum equals to 2.
    4. You can get 2 in the first toss, and 2 in the second. Maximum equals to 2.

    The probability of each outcome is 0.25, that is expectation equals to:

    You can read about expectation using the following link: http://en.wikipedia.org/wiki/Expected_value

     主要是求概率:

     1 #include <bits/stdc++.h>
     2 #define _ ios_base::sync_with_stdio(0);cin.tie(0);
     3 
     4 using namespace std;
     5 int m,n,x;
     6 double ans,p;
     7 int main() { _
     8 scanf("%d%d",&m,&n);
     9 ans = 0.0;
    10 for(x=1;x<=m;++x)
    11 {
    12     p = pow((x+0.0) / (m+0.0),n+0.0) - pow((x-1.0) / (m+0.0),n+0.0);
    13     ans += p * x;
    14 }
    15 printf("%.12f
    ",ans);
    16     return 0;
    17 }
  • 相关阅读:
    基础档案后台CO应用实例_存货档案自动同步功能
    U8应收管理Co单据
    U8供应链各业务单据CO功能
    jq判断是PC还是手机端的方法
    C#下OCX控件的完美使用
    如何使用C#调用U8的COM组件之四 Interop合并方案
    如何使用C#调用U8的COM组件之三 繁多的Interop
    如何使用C#调用U8的COM组件之二 利器与初探
    如何使用C#调用U8的COM组件之 一前言
    【vue】table动态加载图片时,遇到图片不显示问题
  • 原文地址:https://www.cnblogs.com/gangduo-shangjinlieren/p/3886190.html
Copyright © 2020-2023  润新知