#我爱cf之每日一题——脑筋转不转?01

本文解析了Educational Codeforces Round 43中的两道题目:A题Minimum Binary Number和B题Lara Croft and the New Game。对于A题,关键在于统计输入字符串中0的数量,并据此构造最小的二进制数;而B题则是一道有趣的数学题,需要通过数学规律确定游戏中角色的位置。
摘要由CSDN通过智能技术生成

Educational Codeforces Round 43 Editorial

A.Minimum Binary Number

思路:很明显关键在于有多少个0。如果没有0,最后就是1,不然的话如果输入的数是0,输出也为0,其他的时候就是在一堆零的前面加一个1。

代码:

#include<iostream>
#include<cstdio>
using namespace std;

int main(){
    int n;
    string s;
    cin>>n>>s;
    if(n == 1)
    {
       cout<<s<<endl;
    }
    else 
    {
        int tmp = 0;
        for(int i = 0; i < n; i++)
        {
            if(s[i] == '0')
                tmp++;
        }
        cout << "1";
        for(int i = 0; i < tmp; i++)
            cout << "0";
        cout << endl;
    }
	return 0;
}

B.Lara Croft and the New Game

思路:也是挺水的一道数学题。关键在于发现从下往上转弯开始每行的格子数都相同。数学大法好。

代码:

#include<iostream>
#include<cstdio>
using namespace std;

int main(){
    long long n, m, k;
    scanf("%lld%lld%lld", &n, &m, &k);
    if(k >= 0 && k <= n - 1)
    {
        printf("%lld 1\n", k + 1);
    }
    else 
    {
        long long row = (k - n) / (m - 1);
        printf("%lld ", (n - row));
        if(row & 1)//如果是从下往上的奇数行
        {
            printf("%lld\n", m - (k - n) % (m - 1) );
        }
        else 
        {
            printf("%lld\n", 2 + (k - n) % (m - 1) );
        }
    }
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值