D. Zero Quantity Maximization(hash+map)

Posted alingmaomao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了D. Zero Quantity Maximization(hash+map)相关的知识,希望对你有一定的参考价值。

题意:就是让c=a*x+b,给你一个a[],b[],让你尽可能多的让c[]=0,输出有多少。

 

思路:直接令c=0,则x=-b/a, 也就是一条直线,通过这样就用hash值使相同的k值映射到一起,使用了map<long double , int>,这样就直接映射了。

   让我吐血的是,这个还有特殊情况,a=0&&b=0, 注意b绝对不能在a不为0的情况下为0,至于为什么看原式。

 

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

#define ll long double

map<ll, int>ss;
const long long mod = 1e17 + 7;
const int maxn = 2e5+10;


int a[maxn], b[maxn];
int n, maxx;


int gcd(int a, int b){ return b == 0 ? a : gcd(b, a%b); }
int ans;
int main(){
    cin >> n;
    for (int i = 1; i <= n; ++i)
    {
        cin >> a[i];
    }
    for (int i = 1; i <= n; ++i)
        cin >> b[i];

    for (int i = 1; i <= n; ++i){
        if (a[i] == 0){ ans += (b[i] == 0); continue; }
        int d = gcd(a[i], b[i]);
        a[i] /= d;  b[i] /= d;
        ss[a[i] * 1.0 / b[i]]++;
    }


    for (map<ll, int>::iterator it = ss.begin(); it != ss.end(); ++it){
        if (it->second > maxx)maxx = it->second;
    }
    cout << maxx+ans << endl;
}

 

以上是关于D. Zero Quantity Maximization(hash+map)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #653 (Div. 3)D. Zero Remainder Array

Codeforces Round #624 (Div. 3) D. Three Integers

电子商务 | Wordpress - WC_Cart::set_quantity -

LeetCode(数据库)- Orders With Maximum Quantity Above Average

在Odoo 10中继承POS Javascript函数

树莓派zero初步调试