传送门

A. Ariel
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

King Triton really likes watching sport competitions on TV. But much more Triton likes watching live competitions. So Triton decides to set up a swimming competition in the kingdom Merfolk. Thousands of creatures come to take part in competition, that's why it is too difficult to take the first place.

For the King's beloved daughter Ariel this competition is the first in her life. Ariel is very kind, so she wants to give a lot of gold medals. Ariel says, that it is unfair to make a single ranking list for creatures that are so different. It is really a good result to be the fastest small fish without tail in Merfolk!

Ariel chooses k important traits (such as size, tailness, rapacity and so on). A creature can either possess a trait or not (there are no intermediate options).

A score is given for each creature (it doesn't matter how it was calculated) and the list of possessed traits f1, ..., fy is also given.

Ariel wants to know the place occupied by creature a in a competition among creatures, who have the same traits h1, ..., ht. So if creature a doesn't have a trait hi, then all creatures in the competition are without this trait. If creature a has a trait hi, then all creatures in the competition have this trait. Other traits doesn't matter. The winner of the competition is a creature with the maximum score.

Input

The first line contains n (1 ≤ n ≤ 104) and k (1 ≤ k ≤ 10). The next n lines contain information about creatures: score (1 ≤ score ≤ 109), y (0 ≤ y ≤ k) — the number of possessed traits, and y numbers fi (1 ≤ fi ≤ k) — ids of possessed traits. All fi in one line are different.

The next line contains m (1 ≤ m ≤ 105) — the number of queries from Ariel. The next m lines describe queries: a (1 ≤ a ≤ n) — the id of a creature, then t — the number of traits, then t numbers hi. All hi in one line are different.

Output

For each query output the place of a creature a in ranking list amount the corresponded creatures. If several creatures have the same score all of them take the same place.

Examples
Input
3 2
100 1 1
50 1 2
30 2 1 2
12
1 2 1 2
1 1 1
1 1 2
1 0
2 0
2 1 1
2 1 2
2 2 2 1
3 0
3 2 1 2
3 1 2
3 1 1
Output
1
1
1
1
2
1
1
1
3
1
2
2
Input
3 2
100 0
10 0
100 0
3
1 0
2 0
3 0
Output
1
3
1

Solution:
(1)(看起来)比较暴力的做法:

预处理:将属性相同的选手的score放在一个vector里,排序.这样共得到$2^{k}$个vector.

查询:在每个合法属性对应的vector里二分查找比该score大的score的数目.

Implememtation:

 #include <bits/stdc++.h>
using namespace std; const int N=<<, M=1e4+; vector<int> a[N];
int s[M], st[M]; int main(){
int n, k, m;
cin>>n>>k;
for(int i=, c; i<=n; i++){
cin>>s[i]>>c;
for(int t; c--; cin>>t, st[i]|=<<t-);
a[st[i]].push_back(s[i]);
}
for(int i=; i<<<k; i++)
sort(a[i].begin(), a[i].end());
cin>>m;
for(int id, c, t, mask; m--; ){
cin>>id>>c;
mask=;
for(int i=, x; i<c; i++)
cin>>x, mask|=<<x-;
int ans=;
for(int i=; i<<<k; i++)
if((st[id]&mask)==(i&mask))
ans+=a[i].end()-upper_bound(a[i].begin(), a[i].end(), s[id]);
cout<<ans+<<endl;
}
return ;
}

事实证明,这个做法真的没那么暴力.

(2)将所有可能的查询的结果算出来(打表),这样查询的复杂度是$O(1)$的.

把查询查询中要求和id相同的那些属性压缩到一个$k$位整数$s$中(将$s$的对应位置1),存在$res[id][s]$中.

用$st[i]$表示第i个选手的属性,不难看出$res[id][s]$对应的比赛的选手集合为:

\[C_{id, s} =\{i: st[i] \& s = st[id]\& s\}\]

由此,我们将$C_{id, s}$,写成$C_{st[id]\&s}$

考虑在s固定的情况下,如何计算res[1..n][s].

我们用(id, score)表示一个选手, 先将各选手按score从大到小排序。然后逐个放到$C_{st[id]\&s}$中,其实这样是将选手照其$st[id]\&s$分成了若干等价类.这样便可在某个等价类内O(1)地计算res[i][s]。总复杂度是$O(N\log(N)+2^{k}N)$。

Implementation:

#include <bits/stdc++.h>
using namespace std; const int N(<<), M(1e4+);
vector<pair<int,int>> a, b[N];
int res[M][N], st[M]; int main(){
int n, k;
cin>>n>>k;
for(int i=, c, t, sc; i<=n; i++){
cin>>sc>>c;
for(; c--; cin>>t, st[i]|=<<t-); //error-prone
a.push_back({sc, i});
} sort(a.begin(), a.end(), greater<pair<int,int>>()); for(int i=; i<<<k; i++){
for(int i=; i<<<k; i++)
b[i].clear();
for(auto x: a)
b[st[x.second]&i].push_back(x);
for(int j=; j<<<k; j++)
for(int k=; k<b[j].size(); k++)
if(b[j][k].first==b[j][k-].first)
res[b[j][k].second][i]=res[b[j][k-].second][i];
else
res[b[j][k].second][i]=k;
}
int m;
cin>>m;
for(; m--; ){
int mask=, c, id, t;
cin>>id>>c;
for(; c--; cin>>t, mask|=<<t-);
cout<<res[id][mask]+<<endl;
}
return ;
}

CF Gym 100685A Ariel的更多相关文章

  1. CF Gym 102028G Shortest Paths on Random Forests

    CF Gym 102028G Shortest Paths on Random Forests 抄题解×1 蒯板子真jir舒服. 构造生成函数,\(F(n)\)表示\(n\)个点的森林数量(本题都用E ...

  2. CF gym 101933 K King's Colors —— 二项式反演

    题目:http://codeforces.com/gym/101933/problem/K 其实每个点的颜色只要和父亲不一样即可: 所以至多 i 种颜色就是 \( i * (i-1)^{n-1} \) ...

  3. cf Gym 101086M ACPC Headquarters : AASTMT (Stairway to Heaven)

    题目: Description standard input/output As most of you know, the Arab Academy for Science and Technolo ...

  4. CF Gym 100685E Epic Fail of a Genie

    传送门 E. Epic Fail of a Genie time limit per test 0.5 seconds memory limit per test 64 megabytes input ...

  5. CF GYM 100703A Tea-drinking

    题意:龙要制作n个茶,每个茶的配方是一个字符串,两个字符串之间有一个差值,这个差值为两个字符串每个对应字母之间差的绝对值的最大值,求制作所有茶时获得的所有差值中的最大值. 解法:克鲁斯卡尔.将茶的配方 ...

  6. CF GYM 100703B Energy Saving

    题意:王子每月买m个灯泡给n个房间换灯泡,如果当前有的灯泡数够列表的第一个房间换的就全换,直到灯泡不够为止,给出q个查询,查询x月已经换好几个房子,手里还剩多少灯泡. 解法:水题……小模拟. 代码: ...

  7. CF GYM 100703F Game of words

    题意:两个人玩n个游戏,给出每人玩每个游戏的时间,两个人需要在n个游戏中挑m个轮流玩,求最短时间. 解法:dp.(这场dp真多啊……话说也可以用最小费用最大流做……然而并不会XD)dp[i][j][k ...

  8. CF GYM 100703G Game of numbers

    题意:给n个数,一开始基数为0,用这n个数依次对基数做加法或减法,使基数不超过k且不小于0,输出最远能运算到的数字个数,输出策略. 解法:dp.dp[i][j]表示做完第i个数字的运算后结果为j的可能 ...

  9. CF GYM 100703I Endeavor for perfection

    题意:有n个学习领域,每个领域有m个课程,学习第i个领域的第j个课程可以获得sij个技能点,在每个领域中选择一个课程,要求获得的n个技能点的最大值减最小值最小,输出符合要求的策略. 解法:尺取法.将课 ...

随机推荐

  1. 考虑与Maya结合

    今天改进了Hessian各块的计算代码,减少了一些内存操作.下一步准备把模拟平台与Maya结合,这样就可以利用Maya丰富的变形算法了. 这一步需要考虑以下问题: 1.把场景设置为某一帧.这一点可以用 ...

  2. 关于URL编码/javascript/js url 编码

    一.问题的由来 URL就是网址,只要上网,就一定会用到. 一般来说,URL只能使用英文字母.阿拉伯数字和某些标点符号,不能使用其他文字和符号.比如,世界上有英文字母的网址 “http://www.ab ...

  3. 序列化在Netty中的使用

    Java序列化的缺点 1.无法跨语言 对于Java序列化后的字节数组,别的语言无法进行反序列化 2.序列化后的码流过大 3.序列化性能低 使用JDK自带的序列化进行对象的传输 被传输的,实现了序列化接 ...

  4. 13Spring_AOP编程(AspectJ)_后置通知

    后置通知和前置通知差不多.最大的特点是因为后置通知是运行在目标方法之后的,所以他可以拿到目标方法的运行的结果. 给出案例: 案例结构图:

  5. C语言 二级指针内存模型③

    //二级指针内存模型③ #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #incl ...

  6. [转]的C#实现三维数字地形漫游(基于Irrlicht)

    马省轩  任丽娜 摘  要:本文采用C#编程语言,利用Irrlicht三维图形引擎实现了三维数字地形的漫游.为三维数字地形显示提供了较易实现的解决方案. 关键词:C#   高度图 Irrlicht引擎 ...

  7. 设计模式——1.概述&UML类图和时序图

    声明:本博客设计模式相关文章均整理和修改自网络,原文地址:图说设计模式 学习设计模式的3个层次—— 1.熟悉所有设计模式: 2.能够用代码实现: 3.运用到工作的项目中. 设计模式指导软件开发,学习设 ...

  8. [CareerCup] 13.2 Compare Hash Table and STL Map 比较哈希表和Map

    13.2 Compare and contrast a hash table and an STL map. How is a hash table implemented? If the numbe ...

  9. Linux基础入门学习笔记20135227黄晓妍

    学习计时:共24小时 读书:1小时 代码:8小时 作业:3小时 博客:12小时 一.学习目标 1. 能够独立安装Linux操作系统   2. 能够熟练使用Linux系统的基本命令   3. 熟练使用L ...

  10. 在coding上添加ssh-key

    第一步:检查有没有ssh-key 第二步:生成ssh-key 第三步:添加到coding上或者Github上. ls -al ~/.ssh ssh-keygen -t rsa -C "you ...