Educational Codeforces Round 36 (Rated for Div. 2) A-C

期末考试前  

折腾折腾



A:

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

Luba thinks about watering her garden. The garden can be represented as a segment of length k. Luba has got n buckets, the i-th bucket allows her to water some continuous subsegment of garden of length exactly ai each hour. Luba can't water any parts of the garden that were already watered, also she can't water the ground outside the garden.

Luba has to choose one of the buckets in order to water the garden as fast as possible (as mentioned above, each hour she will water some continuous subsegment of length ai if she chooses the i-th bucket). Help her to determine the minimum number of hours she has to spend watering the garden. It is guaranteed that Luba can always choose a bucket so it is possible water the garden.

See the examples for better understanding.

Input

The first line of input contains two integer numbers n and k (1 ≤ n, k ≤ 100) — the number of buckets and the length of the garden, respectively.

The second line of input contains n integer numbers ai (1 ≤ ai ≤ 100) — the length of the segment that can be watered by the i-th bucket in one hour.

It is guaranteed that there is at least one bucket such that it is possible to water the garden in integer number of hours using only this bucket.

Output

Print one integer number — the minimum number of hours required to water the garden.

Examples
input
3 6
2 3 5
output
2
input
6 7
1 2 3 4 5 6
output
7
Note

In the first test the best option is to choose the bucket that allows to water the segment of length 3. We can't choose the bucket that allows to water the segment of length 5 because then we can't water the whole garden.

In the second test we can choose only the bucket that allows us to water the segment of length 1.



【思路】

求因子最大?

int a[MAXN];
int main()
{
    int n,k;
    cin>>n>>k;
    int ans=INF;
    int x;
    for(int i=1;i<=n;i++)
    {
        cin>>x;
        if(k%x==0)
        {
            ans=min(ans,k/x);
        }
    }
    cout<<ans<<endl;
    return 0;
}


B:

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

Luba is surfing the Internet. She currently has n opened tabs in her browser, indexed from 1 to n from left to right. The mouse cursor is currently located at the pos-th tab. Luba needs to use the tabs with indices from l to r (inclusive) for her studies, and she wants to close all the tabs that don't belong to this segment as fast as possible.

Each second Luba can either try moving the cursor to the left or to the right (if the cursor is currently at the tab i, then she can move it to the tab max(i - 1, a) or to the tab min(i + 1, b)) or try closing all the tabs to the left or to the right of the cursor (if the cursor is currently at the tab i, she can close all the tabs with indices from segment [a, i - 1] or from segment [i + 1, b]). In the aforementioned expressions a and b denote the minimum and maximum index of an unclosed tab, respectively. For example, if there were 7 tabs initially and tabs 12 and 7are closed, then a = 3b = 6.

What is the minimum number of seconds Luba has to spend in order to leave only the tabs with initial indices from l to r inclusiveopened?

Input

The only line of input contains four integer numbers nposlr (1 ≤ n ≤ 1001 ≤ pos ≤ n1 ≤ l ≤ r ≤ n) — the number of the tabs, the cursor position and the segment which Luba needs to leave opened.

Output

Print one integer equal to the minimum number of seconds required to close all the tabs outside the segment [l, r].

Examples
input
6 3 2 4
output
5
input
6 3 1 3
output
1
input
5 2 1 5
output
0
Note

In the first test Luba can do the following operations: shift the mouse cursor to the tab 2, close all the tabs to the left of it, shift the mouse cursor to the tab 3, then to the tab 4, and then close all the tabs to the right of it.

In the second test she only needs to close all the tabs to the right of the current position of the cursor.

In the third test Luba doesn't need to do anything.



【思路】

根据pos 位置分情况? 在里面 在外面?


nt main()
{
    int n,pos,l,r;
    cin>>n>>pos>>l>>r;
    if(l==1&&r==n)
    {
        cout<<0<<endl;
        return 0;
    }
    else
    {
        int ans=0;
        if(pos>=l&&pos<=r)
        {
            if(l>1&&r<n)
            {
                ans=  min(fabs(pos-l),fabs(pos-r))+ (r-l)+2;
            }
            else
            {
                if(l>1&&r==n)
                    ans=fabs(pos-l)+1;
                else if(r<n&&l==1)
                    ans=fabs(pos-r)+1;
            }
        }
        else
        {
            if(l>1&&r<n)
            {
                ans= max(fabs(pos-l),fabs(pos-r))+2;
            }
            else
            {
                if(l>1&&r==n)
                {
                    ans=fabs(pos-l)+1;
                }
                else if(r<n&&l==1)
                {
                    ans=fabs(pos-r)+1;
                }
            }
        }
        cout<<ans<<endl;

    }
    return 0;
}



C:


C. Permute Digits
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given two positive integer numbers a and b. Permute (change order) of the digits of a to construct maximal number not exceeding b. No number in input and/or output can start with the digit 0.

It is allowed to leave a as it is.

Input

The first line contains integer a (1 ≤ a ≤ 1018). The second line contains integer b (1 ≤ b ≤ 1018). Numbers don't have leading zeroes. It is guaranteed that answer exists.

Output

Print the maximum possible number that is a permutation of digits of a and is not greater than b. The answer can't have any leading zeroes. It is guaranteed that the answer exists.

The number in the output should have exactly the same length as number a. It should be a permutation of digits of a.

Examples
input
123
222
output
213
input
3921
10000
output
9321
input
4940
5000
output
4940


【思路】

暴力b每一位 a匹配过来 两种请况 1: <b【】时 2:=b【】时。 = 时 类似于前一种情况,此时前缀 要加上一致的 < 时 就是 暴力枚举所有情况里 最大的又不超过b的

#include <bits/stdc++.h>
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <cmath>
#include <math.h>
#include <cstring>
#include <string>
#include <queue>
#include <deque>
#include <stack>
#include <stdlib.h>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <vector>
#define mem(a,b) memset(a,b,sizeof(a))
#define findx(x,b,n) lower_bound(b+1,b+1+n,x)-b
#define FIN      freopen("input.txt","r",stdin)
#define FOUT     freopen("output.txt","w",stdout)
#define SHUT ios_base::sync_with_stdio(false); cout.setf(ios::fixed); cout.tie(nullptr); cin.tie(nullptr);
#define lson rt << 1, l, mid
#define rson rt << 1|1, mid + 1, r
#define  FI(n) IO::read(n)
#define  Be IO::begin()

using namespace std;
typedef long long ll;
const double PI=acos(-1);
const int INF=0x3f3f3f3f;
const double esp=1e-6;
const int maxn=1e6+5;
const int MAXN=50005;
const int MOD=1e9+7;
const int mod=1e9+7;
int dir[5][2]={0,1,0,-1,1,0,-1,0};

int num[12];
int main()
{
    SHUT;
    mem(num,0);
    string a;
    string b;
    string ans;
    cin>>a>>b;
    if(b.length()>a.length())
    {
        sort(a.rbegin(),a.rend());
        cout<<a<<endl;
    }
    else
    {
        for(char c: a)
            num[c-'0']++;
        string cur="";
        for(int i=0;i<b.length();i++)
        {
            for(int j=(b[i]-'0')-1;j>=0;j--)
                if(num[j])
                {
                    string z=cur+ char(j+'0');
                    num[j]--;
                    for(int x=9;x>=0;x--)
                    {
                        for(int y=0;y<num[x];y++)
                            z+=char(x+'0');
                    }
                    //cout<<z<<endl;
                    ans=max(ans,z);
                    num[j]++;
                }
            if(num[b[i]-'0'])
            {
                cur+=b[i];
                num[b[i]-'0']--;
                if(cur.size()==b.size() && cur<=b)
                {
                    ans=max(ans,cur);
                }

            }else break;
        }
        cout<<ans<<endl;
    }




    return 0;
}


1122

"educational codeforces round 103 (rated for div. 2)"是一个Codeforces平台上的教育性比赛,专为2级选手设计评级。以下是有关该比赛的回答。 "educational codeforces round 103 (rated for div. 2)"是一场Codeforces平台上的教育性比赛。Codeforces是一个为程序员提供竞赛和评级的在线平台。这场比赛是专为2级选手设计的,这意味着它适合那些在算法和数据结构方面已经积累了一定经验的选手参与。 与其他Codeforces比赛一样,这场比赛将由多个问题组成,选手需要根据给定的问题描述和测试用例,编写程序来解决这些问题。比赛的时限通常有两到三个小时,选手需要在规定的时间内提交他们的解答。他们的程序将在Codeforces的在线评测系统上运行,并根据程序的正确性和效率进行评分。 该比赛被称为"educational",意味着比赛的目的是教育性的,而不是针对专业的竞争性。这种教育性比赛为选手提供了一个学习和提高他们编程技能的机会。即使选手没有在比赛中获得很高的排名,他们也可以从其他选手的解决方案中学习,并通过参与讨论获得更多的知识。 参加"educational codeforces round 103 (rated for div. 2)"对于2级选手来说是很有意义的。他们可以通过解决难度适中的问题来测试和巩固他们的算法和编程技巧。另外,这种比赛对于提高解决问题能力,锻炼思维和提高团队合作能力也是非常有帮助的。 总的来说,"educational codeforces round 103 (rated for div. 2)"是一场为2级选手设计的教育性比赛,旨在提高他们的编程技能和算法能力。参与这样的比赛可以为选手提供学习和进步的机会,同时也促进了编程社区的交流与合作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值