\(\color{#0066ff}{ 题目描述 }\)

衡水二中的机房里经常有人莫名其妙地犇雷,leizi很生气,决定要找出那个犇雷的人

机房有n个人,每个人都认为机房里有两个人可能会犇雷,其中第i个人认为xi和yi可能会在机房犇雷(1<=i,xi,yi<=n,xi!=yi) (某个人不可能资磁自己犇雷,即xi,yi!=i)

leizi决定找出两个pwang并把他们按在床上揍。leizi希望选择的方案恰好被c个人支持,一个oier会支持一个方案当且仅当至少有一个他认为的pwang被leizi揍了。

请对于所有的c∈[0,n]求出leizi选择的方案数。

\(\color{#0066ff}{输入格式}\)

从leigehhh.in读入

第一行输入一个整数n

接下来n行,每行输入两个整数xi和yi中间用空格分开。

\(\color{#0066ff}{输出格式}\)

将输出写到leigehhh.out

输出n+1行,第i行代表c=i-1时的方案数

\(\color{#0066ff}{输入样例}\)

8
5 6
5 7
5 8
6 2
2 1
7 3
1 3
1 4

\(\color{#0066ff}{输出样例}\)

0
0
1
12
10
4
1
0
0

\(\color{#0066ff}{数据范围与提示}\)

对于10%的数据,n<=100

对于30%的数据,n<=1000 且 数据随机

对于100%的数据,n<=100000

你需要提交源文件leigehhh.cpp/c/pas

本题开启special judge,如果你觉得某个子任务非常难,您可以尝试完成以下任务,并获得本测试点60%的分数:

第一行输出"IAKNOI"(不包含引号)

第二行输出对于c∈[n/4,n]的方案数之和,n/4向下取整。

例如对于样例,可以输出:

IAKNOI

28

本题使用Lemon评测,配置Lemon风格的自定义校验器。

温馨提示:1.正解不难2.如果不会正解,本题可以使用多种奇怪的方法操到好多分

\(\color{#0066ff}{ 题解 }\)

我们开一个数组,mp[i]记录对每个人有多少人支持i

设\(S_{i,j}\)为同时支持i和j的人数

那么答案即为\(mp[i]+mp[j]-s[i][j]\)的桶

不难发现,\(s[i][j]\)只存在n个,而前面存在\(n^2\)个

考虑算出\(mp[i]+mp[j]\)的桶,然后在桶上修改

即\(t[mp[i]+mp[j]]--,t[mp[i]+mp[j]-s[i][j]]++\),直接修改

这个很容易办到

现在考虑怎么求\(mp[i]+mp[j]\)

可以列出式子,最后的桶\(ans[v]=\sum[mp[i]+mp[j]==v]\)

这启示我们对mp开桶,设为t

\(\begin{aligned} ans[v]=\sum_{mp_i+mp_j=v}t_{mp_i}*t_{mp_j}\end{aligned}\)

这是。。。卷积啊!!

一波FFT过去,ans就出来了

但其中有些值不对

比如\(t:1 \ \ 3 \ \ 2\)

FFT后4的系数为\(1*2+3*3+2*1\)

但实际上我们只有一个3,而且上面有重复

对于\(mp_i=mp_j\)的情况,不难发现只有在奇数的时候才会出现

这时候把平方减去,加上正确的贡献\(C_n^2\)即可

还要/2

最后别忘考虑那些存在s的东西

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cctype>
#include<vector>
#include<cmath>
#define LL long long LL in() {
char ch; LL x = 0, f = 1;
while(!isdigit(ch = getchar()))(ch == '-') && (f = -f);
for(x = ch ^ 48; isdigit(ch = getchar()); x = (x << 1) + (x << 3) + (ch ^ 48));
return x * f;
}
namespace qwq {
void in() {
freopen("leigehhh.in", "r", stdin);
freopen("leigehhh.out", "w", stdout);
}
void out() {
fclose(stdin);
fclose(stdout);
}
}
using std::vector;
const int maxn = 1e5 + 100;
const double pi = acos(-1);
int t[maxn], mp[maxn];
LL tt[maxn], lst[maxn], ans[maxn];
vector<int> v[maxn];
struct node {
double x, y;
node(double x = 0, double y = 0): x(x), y(y) {}
friend node operator + (const node &a, const node &b) { return node(a.x + b.x, a.y + b.y); }
friend node operator - (const node &a, const node &b) { return node(a.x - b.x, a.y - b.y); }
friend node operator * (const node &a, const node &b) { return node(a.x * b.x - a.y * b.y, a.x * b.y + a.y * b.x); }
friend node operator / (const node &a, const double &b) { return node(a.x / b, a.y / b); }
}A[maxn], B[maxn], C[maxn];
int len, r[maxn];
void FFT(node *D, int flag) {
for(int i = 0; i < len; i++) if(i < r[i]) std::swap(D[i], D[r[i]]);
for(int l = 1; l < len; l <<= 1) {
node w0(cos(pi / l), flag * sin(pi / l));
for(int i = 0; i < len; i += (l << 1)) {
node w(1, 0), *a0 = D + i, *a1 = D + i + l;
for(int k = 0; k < l; k++, a0++, a1++, w = w * w0) {
node tmp = *a1 * w;
*a1 = *a0 - tmp;
*a0 = *a0 + tmp;
}
}
}
if(!(~flag)) for(int i = 0; i < len; i++) D[i] = D[i] / len;
}
int main() {
freopen("leigehhh.in", "r", stdin);
freopen("leigehhh.out", "w", stdout);
int n = in();
int x, y;
for(int i = 1; i <= n; i++) {
x = in(), y = in();
v[x].push_back(y);
v[y].push_back(x);
mp[x]++, mp[y]++;
}
for(int i = 1; i <= n; i++) {
std::sort(v[i].begin(), v[i].end());
for(int j = 0; j < (int)v[i].size(); j++) t[v[i][j]]++;
for(int j = 0; j < (int)v[i].size(); j++) {
if(j && v[i][j] == v[i][j - 1]) continue;
ans[mp[i] + mp[v[i][j]]]--;
ans[mp[i] + mp[v[i][j]] - t[v[i][j]]]++;
t[v[i][j]] = 0;
}
}
for(int i = 1; i <= n; i++) tt[mp[i]]++;
for(int i = 0; i <= n; i++) B[i] = A[i] = tt[i];
for(len = 1; len <= n + n; len <<= 1);
for(int i = 0; i < len; i++) r[i] = (r[i >> 1] >> 1) | ((i & 1) * (len >> 1));
FFT(A, 1), FFT(B, 1);
for(int i = 0; i < len; i++) C[i] = A[i] * B[i];
FFT(C, -1);
for(int i = 0; i <= n; i++) lst[i] = (int)round(C[i].x);
for(int i = 0; i <= n; i++) {
if(i & 1) continue;
lst[i] -= tt[i >> 1] * tt[i >> 1];
lst[i] += (tt[i >> 1] * (tt[i >> 1] - 1LL));
}
for(int i = 0; i <= n; i++) printf("%lld\n", (ans[i] >> 1LL) + (lst[i] >> 1LL));
return 0;
}

一直写vector的NTT,一下子写double的FFT, 数组开小了。。。。\(100pts\to 30pts\)欲哭无泪(雾

2019.2.14 考试T1 FFT的更多相关文章

  1. 2019.2.14 考试T3 交互题

    \(\color{#0066ff}{ 题目描述 }\) 由于机房被成功拯救了,花_Q很高兴,花_Q生成了一个 0 到 N - 1 的排列(排列的下标从 0 到 N - 1 ).保证排列中 0 在 N ...

  2. 2019.2.25考试T1, 矩阵快速幂加速递推+单位根反演(容斥)

    \(\color{#0066ff}{题解}\) 然后a,b,c通过矩阵加速即可 为什么1出现偶数次3没出现的贡献是上面画绿线的部分呢? 考虑暴力统计这部分贡献,答案为\(\begin{aligned} ...

  3. 考试T1总结(又CE?!)

    考试T1CE... 最近不适合考试 T1 扶苏是个喜欢一边听古风歌一边写数学题的人,所以这道题其实是五三原题.歌曲中的主人公看着墙边的海棠花,想起当年他其实和自己沿着墙边种了一排海棠,但是如今都已枯萎 ...

  4. 每日一练ACM 2019.04.14

    2019.4.14 第1001题:Sum Problem Problem DescriptionHey, welcome to HDOJ(Hangzhou Dianzi University Onli ...

  5. 【LOJ】#3030. 「JOISC 2019 Day1」考试

    LOJ#3030. 「JOISC 2019 Day1」考试 看起来求一个奇怪图形(两条和坐标轴平行的线被切掉了一个角)内包括的点个数 too naive! 首先熟练的转化求不被这个图形包含的个数 -- ...

  6. 2019.2.14 t1 最大公约数

    代码: #include <cstdio> #include <iostream> #include <cstring> #include <algorith ...

  7. 【2019.8.14 慈溪模拟赛 T1】我不是!我没有!别瞎说啊!(notme)(BFS+DP)

    \(IDA^*\) 说实话,这道题我一开始没想出正解,于是写了一个\(IDA^*\)... 但神奇的是,这个\(IDA^*\)居然连字符串长度分别为\(2500,4000\)的数据都跑得飞快,不过数据 ...

  8. 2019.3.28&2019.3.30考试

    2019.3.28 : 肥肠爆芡,因为这场考试的题太屑了,所以我咕咕了 Upd on 2019.3.30 压进来一篇(因为都没啥意义) 2019.3.30 : 全机房读错题+没有大样例=T2全体爆炸 ...

  9. 2019.3.18考试&2019.3.19考试&2019.3.21考试

    2019.3.18 C O D E T1 树上直接贪心,环上for一遍贪心 哇说的简单,码了将近一下午终于码出来了 感觉自己码力/写题策略太糟糕了,先是搞了一个细节太多的写法最后不得不弃疗了,然后第二 ...

随机推荐

  1. javascript一些小的注意点

    try...catch 可以测试代码中的错误.try 部分包含需要运行的代码,而 catch 部分包含错误发生时运行的代码. 当try { 里面的代码 出现错误了 }catch(e){ 才执行下面的c ...

  2. md5加密(2)

    package test1; import java.security.MessageDigest; public class MD5Test { //十六进制下数字到字符的映射数组 private ...

  3. wp8安装SSL证书

    把证书打成zip包,wp8的IE能下载并打开ZIP包,然后点击cer文件,就能安装证书了

  4. 关于无法解析的外部符号 _main

    今天在写一段代码的时候,遇到了这个问题,一般遇到这种问题,都是找不到主函数,就是main函数,可是我写的代码是有入口地址main函数的呀.最后发现是自己源文件里,main函数是.c文件,.h文件对应的 ...

  5. Yahoo浮沉录

    Yahoo这一路曾经出过很多好技术 然而,任何人如果只是把 Yahoo 当作一家缺乏聚焦的企业来看也许忽视了公司内部的那些创新—偶尔甚至还有一些很好的产品创意.就拿搜索来说吧,我们说的不是付费搜索,而 ...

  6. Developer tools

    20. Developer tools Spring Boot includes an additional set of tools that can make the application de ...

  7. 使用JSONObject类来生成json格式的数据

    JSONObject类不支持javabean转json 生成json格式数据的方式有: 1.使用JSONObject原生的来生成 2.使用map构建json格式的数据 3.使用javabean来构建j ...

  8. 属性操作get.Attribute()

  9. 洛谷P3328(bzoj 4085)毒瘤线段树

    题面及大致思路:https://www.cnblogs.com/Yangrui-Blog/p/9623294.html, https://www.cnblogs.com/New-Godess/p/45 ...

  10. Go语言-变量和常量

    我们在这里需要优先说明的是用于声明变量的关键字var,以及用于声明常量的关键字const.要知道,绝大多数的数据类型的值都可以被赋给一个变量,包括函数.而常量则不同,它只能被赋予基本数据类型的值本身. ...