码迷,mamicode.com
首页 > 其他好文 > 详细

Educational Codeforces Round 77 (Rated for Div. 2) B. Obtain Two Zeroes

时间:2020-03-02 22:53:24      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ted   --   代码   ==   sync   com   codeforce   a+b   cin   

Link
题意:
已知 \(a,b\),任取 \(x\),每次进行两种操作的一种
操作一:\(a-x,b-2x\)
操作二:\(a-2x,b-x\)
问最终能否让 \(a,b\) 都为 \(0\)
思路:
易得成立的条件为:\((a+b)\mod3==0\) && \(max(a,b)\le min(a,b) \times 2\)
代码:

#include<bits/stdc++.h>

using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;cin>>T;
    while(T--)
    {
        int a,b;
        cin>>a>>b;
        if((a+b)%3==0&&max(a,b)<=min(a,b)*2) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
    return 0;
}

Educational Codeforces Round 77 (Rated for Div. 2) B. Obtain Two Zeroes

标签:ted   --   代码   ==   sync   com   codeforce   a+b   cin   

原文地址:https://www.cnblogs.com/c4Lnn/p/12398405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!