codechef 3D Queries(MGCH3D)

资瓷点这里阅读QvQ

题外话

这个题是cc 9月challenge的最后一题,当时没仔细考虑,以为这是个近似计算的题。。。赛后看了题解才猛然醒悟

codechef 3D Queries(MGCH3D)

Description

i!=j|A(XiXj)+B(YiYj)+C(ZiZj)+D|N(N1)(XiXj)4+(YiYj)4+(ZiZj)4
2N777777,1X,Y,Z,A,B,C77 , Q(1Q77) 组询问,每次给 A,B,C,D , 求上式的值。

Solution

x,y,z 坐标都很小( 1x,y,z77 ),差的取值也很小,不妨构造多项式 A[N2×x+N×y+z]+=1 , B[N2×(77x)+N×(77y)+(77z)]+=1 。令 N=772
我们发现 A×B=N2×(77+x[i]x[j])+N×(77+y[i]y[j])+(77+z[i]z[j])
显然 x[i]x[j],y[i]y[j],z[i]z[j] 我们可以通过,于是这题FFT一下就做完了= =

#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define F first
#define S second
typedef long long LL;
typedef pair<int, int> pii;
const int N = 153;
const double PI = acos(-1.0);
double D[80][80][80];
namespace FFT {
  static const int W = 1 << 22;
  static const double PI = acos(-1.0);
  struct Complex {
    double x, y;
    Complex(double _x = 0, double _y = 0) : x(_x), y(_y) {}
    Complex operator + (const Complex &t) const {return Complex(x + t.x, y + t.y);}
    Complex& operator += (const Complex &t) {x += t.x, y += t.y;return *this;}
    Complex operator - (const Complex &t) const {return Complex(x-t.x,y-t.y);}
    Complex& operator -= (const Complex &t) {x -= t.x, y -= t.y;return *this;}
    Complex operator * (const Complex &t) const {return Complex(x * t.x - y * t.y, x * t.y + y * t.x);}
    Complex operator / (const double &t) const {return Complex(x / t,y / t);}
    Complex& operator /= (const double &t) {x /= t, y /= t;return *this;}
    double real() {return x;}
    double imag() {return y;}
  };
  void fft(Complex a[], int n, int rev) {// rev=-1, reverse
      for (int i = 1, j = 0, k; i < n; ++i) {
          for (k = n >> 1; k > (j ^= k); k >>= 1);
          if (i < j) swap(a[i], a[j]);
      }
      for (int s = 1, ss = 2; s < n; s <<= 1,ss <<= 1) {
          Complex wn(cos(2 * PI * rev / ss), sin(2 * PI * rev / ss)), w;
          for (int i = 0, j ; i < n; i += ss) {
              for (j = i, w = 1; j < i + s; ++j, w = w * wn) {
                  Complex t = w * a[j + s];
                  a[j + s] = a[j] - t; 
                  a[j] = a[j] + t;
              }
          }
      }
      if (rev == -1) for (int i = 0; i < n; ++i) a[i] /= n;
  }
}
FFT::Complex A[FFT::W], B[FFT::W];
inline double sqrr(double x) {
    return x * x * x * x;
}
int main() {
    int n, q;
    scanf("%d%d", &n, &q);
    for (int i = 1, x, y, z; i <= n; ++i) {
        scanf("%d%d%d", &x, &y, &z);
        --x, --y, --z;
        int t1 = N * N * x + N * y + z, t2 = N * N * (76 - x) + N * (76 - y) + (76 - z);
        A[t1].x += 1, B[t2].x += 1;
    }
    for (int i = 0; i <= 77; ++i)
        for (int j = 0; j <= 77; ++j)
            for (int k = 0; k <= 77; ++k)
                D[i][j][k] = sqrt(sqrr(i) + sqrr(j) + sqrr(k));
    FFT::fft(A, FFT::W, 1);
    FFT::fft(B, FFT::W, 1);
    for (int i = 0; i < FFT::W; ++i)    A[i] = A[i] * B[i];
    FFT::fft(A, FFT::W, -1);
    while (q--) {
        double ans = 0;
        int a, b, c, d;
        scanf("%d%d%d%d", &a, &b, &c, &d);
        for (int i = 0; i < FFT::W; ++i) {
            int cnt = int(A[i].real() + 0.5);
            if (!cnt)   continue;
            int x = i / (N * N) - 76, y = i / N % N - 76, z = i % N - 76;
            if (!x && !y && !z) continue;
            ans += fabs(a * x + b * y + c * z + d) * cnt / D[abs(x)][abs(y)][abs(z)];
        }
        ans /= n, ans /= n - 1;
        printf("%.10lf\n", ans);
    }
    return 0;
}

总结

自己还是太年轻,一看范围小就想着想忽略近似计算和乱搞,犯了方向性的错误= =。。还是要多加思考QvQ

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值