比赛 2024暑期C班集训2 评测结果 AATTTTTTTT
题目名称 Vera 与现代艺术 最终得分 20
用户昵称 123 运行时间 16.096 s
代码语言 C++ 内存使用 13.37 MiB
提交时间 2024-07-02 11:31:56
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N=200010;
long long x[N],y[N],v[N],a[N],b[N];
int n,t;
long long lowbit(long long x)
{
    return x&-x;
}
long long change(long long x)
{
    long long cnt=0;
    while (x>0)
    {
        cnt=x;
        x-=lowbit(x);
    }
    return cnt;
}
int main() {
    freopen("modern.in","r",stdin);
    freopen("modern.out","w",stdout);
    scanf("%d%d",&n,&t);
    for (int i=1;i<=n;i++)
    {
        scanf("%lld%lld%lld",&x[i],&y[i],&v[i]);
        a[i]=change(x[i]);
        b[i]=change(y[i]); 
    }
    while (t--)
    {
        int ret=0;
        long long r,c;
        scanf("%lld%lld",&r,&c);
        for (int i=1;i<=n;i++)
        {
            if ((r-x[i])%a[i]==0 && (c-y[i])%b[i]==0)
            {
                ret+=v[i];
            }
        } 
        printf("%d\n",ret);
    }
}