Submission #127761

# Submission time Handle Problem Language Result Execution time Memory
127761 2019-07-10T05:42:12 Z 윤교준(#3110) Dragon 2 (JOI17_dragon2) C++14
0 / 100
4000 ms 11484 KB
#include <bits/stdc++.h>
#define rf(x) (x)=0;while(*p<48)im='-'==*p++;while(47<*p)(x)=((x)<<3)+((x)<<1)+(*p++&15);if(im)(x)=-(x);
#define eb emplace_back
#define allv(V) ((V).begin()),((V).end())
#define sorv(V) sort(allv(V))
#define univ(V) (V).erase(unique(allv(V)),(V).end())
using namespace std;
typedef long long ll;
static unsigned char str[5500055], *p=str;
static bool im=false;

const int MAXN = 30005;
const int MAXK = 30005;
const int MAXQ = 100005;

vector<int> QV[MAXK], QRV[MAXK];
vector<int> AV[MAXK];
ll DA[MAXN], DB[MAXN];
int QI[MAXK], QRI[MAXK];
bitset<MAXK> haveToCal;
bitset<MAXK> chkQ, chkQR;
bitset<MAXN> isInv;

int X[MAXN], Y[MAXN], A[MAXN];
int B[MAXQ], C[MAXQ];

static unsigned int Ans[MAXQ];
int AX, AY, BX, BY;
int N, K, Q;

void process() {
	ll xa, ya, taa, tab, t, ta, tb;
	for(int ga = 1; ga <= K; ga++) if(haveToCal[ga]) {
		chkQ.reset(); chkQR.reset();
		for(int qi : QV[ga]) {
			int gb = qi & 32767;
			QI[gb] = qi >> 15;
			chkQ[gb] = true;
		}
		for(int qi : QRV[ga]) {
			int gb = qi & 32767;
			QRI[gb] = qi >> 15;
			chkQR[gb] = true;
		}
		for(int a : AV[ga]) {
			xa = X[a]; ya = Y[a]; taa = -DA[a]; tab = -DB[a];
			bool flag = isInv[a];
			for(int b = 1, gb; b < a; b++) {
				gb = A[b];
				if(!chkQ[gb] && !chkQR[gb]) continue;
				t = xa*Y[b] - ya*X[b];
				ta = taa + DA[b] - t;
				tb = tab + DB[b] - t;
				if(chkQ[gb]) {
					if((!flag && ta < 0 && tb > 0) || (flag && ta > 0 && tb < 0)) {
						Ans[QI[gb]]++;
					}
				}
				if(chkQR[gb]) {
					if(isInv[b]) {
						if(ta < 0 && tb > 0) {
							Ans[QRI[gb]]++;
						}
					} else {
						if(ta > 0 && tb < 0) {
							Ans[QRI[gb]]++;
						}
					}
				}
			}
		}
	}
}

void precal() {
	for(int i = 1; i <= N; i++) AV[A[i]].eb(i);
	for(int i = 1; i <= N; i++) {
		ll x = X[i], y = Y[i];
		DA[i] = y*AX - x*AY;
		DB[i] = y*BX - x*BY;

		ll t = (ll(AX)*BY - ll(AY)*BX) + (y*BX - x*BY) + (x*AY - y*AX);
		if(t > 0) isInv[i] = true;
	}
	for(int i = 1; i <= Q; i++) {
		QV[B[i]].eb(i<<15 | C[i]);
		QRV[C[i]].eb(i<<15 | B[i]);
		haveToCal[B[i]] = haveToCal[C[i]] = true;
	}
}

int main() {
	fread(str, 1, 5500055, stdin);

	rf(N) rf(K)
	for(int i = 1; i <= N; i++) { rf(X[i]) rf(Y[i]) rf(A[i]) }
	rf(AX) rf(AY) rf(BX) rf(BY) rf(Q)
	for(int i = 1; i <= Q; i++) { rf(B[i]) rf(C[i]) }
	
	precal();
	process();

	for(int i = 1; i <= Q; i++)
		printf("%u\n", Ans[i]);
	return 0;
}

Compilation message

dragon2.cpp: In function 'int main()':
dragon2.cpp:93:7: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread(str, 1, 5500055, stdin);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 52 ms 2680 KB Output is correct
2 Correct 72 ms 2680 KB Output is correct
3 Correct 89 ms 2908 KB Output is correct
4 Runtime error 60 ms 11484 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 4103 ms 4240 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 52 ms 2680 KB Output is correct
2 Correct 72 ms 2680 KB Output is correct
3 Correct 89 ms 2908 KB Output is correct
4 Runtime error 60 ms 11484 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Halted 0 ms 0 KB -