Henu ACM Round #13 C Ebony and Ivory

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Henu ACM Round #13 C Ebony and Ivory相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


先求出c-bx的所有可能
->存在map里面
然后枚举y看看a
y在不在map里面
在的话就有解。
这样复杂度是\(O(N*log_2N)\)
比直接两层循环枚举的\(O(N^2)\)复杂度要来的好
这种方法也叫"中途相遇法"

【代码】

#include <bits/stdc++.h>
#define ll long long
using namespace std;

ll a,b,c;
map<int,int> dic;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> a >> b >> c;
    for (int i = 0;i <= 10000;i++){
        if (c-b*i<0) break;
        dic[c-b*i]=1;
    }
    for (int i = 0;i <= 10000;i++)
        if (dic[a*i]){
            cout <<"Yes"<<endl;
            return 0;
        }
    cout <<"No"<<endl;
    return 0;
}

以上是关于Henu ACM Round #13 C Ebony and Ivory的主要内容,如果未能解决你的问题,请参考以下文章

Henu ACM Round #13 ESpy Syndrome 2

Henu ACM Round #13 DA Trivial Problem

Henu ACM Round #13 FFibonacci-ish

Henu ACM Round#20 EStar

Henu ACM Round#19 C Developing Skills

Henu ACM Round#15 C A and B and Team Training