Codeforces 550C - Divisibility by Eight(思维)

探讨如何从一个非负整数中移除部分数字,使其余部分仍为非负整数且能被8整除。通过检查长度为1、2、3的数字片段来寻找解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. Divisibility by Eight
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given a non-negative integer n, its decimal representation consists of at most 100 digits and doesn’t contain leading zeroes.

Your task is to determine if it is possible in this case to remove some of the digits (possibly not remove any digit at all) so that the result contains at least one digit, forms a non-negative integer, doesn’t have leading zeroes and is divisible by 8. After the removing, it is forbidden to rearrange the digits.

If a solution exists, you should print it.

Input
The single line of the input contains a non-negative integer n. The representation of number n doesn’t contain any leading zeroes and its length doesn’t exceed 100 digits.

Output
Print “NO” (without quotes), if there is no such way to remove some digits from number n.

Otherwise, print “YES” in the first line and the resulting number after removing digits from number n in the second line. The printed number must be divisible by 8.

If there are multiple possible answers, you may print any of them.

Examples
input
3454
output
YES
344
input
10
output
YES
0
input
111111
output
NO

题意:
给出一串数,去除任意多个数,使得剩下的数能被8整除.

解题思路:
1000能被8整除,那么对于一个大于等于1000的数可以分解成1000*n+k.
所以只要看长度为1,2,3的数能否被8整除即可.

AC代码:

#include <bits/stdc++.h>
using namespace std;
string a;
int main()
{
    ios::sync_with_stdio(0);
    cin >> a;
    for(int i = 0; a[i]; i++)
    {
        if((a[i]-'0') % 8 == 0)
            {
                cout << "YES" << endl;
                cout << a[i];
                return 0;
            }
    }
    for(int i = 0; a[i]; i++)
    {
        for(int j = i+1; a[j]; j++)
        {
            if(((a[i]-'0')*10 + a[j]-'0') % 8 == 0)
            {
                cout << "YES" << endl;
                cout << a[i] << a[j];
                return 0;
            }
        }
    }
    for(int i = 0; a[i]; i++)
    {
        for(int j = i+1; a[j]; j++)
        {
            for(int k = j+1; a[k]; k++)
            {
                if(((a[i]-'0')*100 + (a[j]-'0')*10 + a[k]-'0') % 8 == 0)
                {
                    cout << "YES" << endl;
                    cout << a[i] << a[j] << a[k];
                    return 0;
                }
            }
        }
    }
    cout << "NO";
    return 0;
}
### Codeforces Problem 976C Solution in Python For solving problem 976C on Codeforces using Python, efficiency becomes a critical factor due to strict time limits aimed at distinguishing between efficient and less efficient solutions[^1]. Given these constraints, it is advisable to focus on optimizing algorithms and choosing appropriate data structures. The provided code snippet offers insight into handling string manipulation problems efficiently by customizing comparison logic for sorting elements based on specific criteria[^2]. However, for addressing problem 976C specifically, which involves determining the winner ('A' or 'B') based on frequency counts within given inputs, one can adapt similar principles of optimization but tailored towards counting occurrences directly as shown below: ```python from collections import Counter def determine_winner(): for _ in range(int(input())): count_map = Counter(input().strip()) result = "A" if count_map['A'] > count_map['B'] else "B" print(result) determine_winner() ``` This approach leverages `Counter` from Python’s built-in `collections` module to quickly tally up instances of 'A' versus 'B'. By iterating over multiple test cases through a loop defined by user input, this method ensures that comparisons are made accurately while maintaining performance standards required under tight computational resources[^3]. To further enhance execution speed when working with Python, consider submitting codes via platforms like PyPy instead of traditional interpreters whenever possible since they offer better runtime efficiencies especially important during competitive programming contests where milliseconds matter significantly.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值