#include<bits/stdc++.h>using namespace std;//floor(x) 向下取整函数//ceil(x) 向上取整函数//round(x) 四舍五入函数struct Point{ double x,y; Point(double x=0,d ...
1100F-Ivan and Burgers
发表于
|
分类于
线性基
F. Ivan and Burgers 题意 给出n个整数,有q次查询,每次查询给出l,r,问l,r内区间的最大异或和. 思路 线性基,在线或者离线 代码离线线性基的代码 #include<bits/stdc++.h>using namespace std;const int m ...
2019牛客多校第一场
发表于
|
更新于
|
分类于
数论
感谢老陈的翻译 B. Integration题目大意 已知\int_0^{\infty}\frac{1}{1+x^2}dx=\frac{\pi}{2}.给定数组a,求\frac{1}{\pi}\int_0^{\infty}\frac{1}{\prod{\left( a_i^2+x^2 \right) ...