首页 > 代码库 > HDU 5033 Building(北京网络赛B题)
HDU 5033 Building(北京网络赛B题)
HDU 5033 Building
题目链接
思路:利用单调栈维护建筑建的斜线,保持斜率单调性,然后可以把查询当成高度为0的建筑,和建筑和在一起考虑,从左往右和从右往左各扫一遍即可
代码:
#include <cstdio> #include <cstring> #include <queue> #include <cmath> #include <algorithm> using namespace std; const int N = 200005; const double pi = acos(-1.0); const double eps = 1e-8; int t, n, q; struct Build { double x, h; bool isq; double s[2]; int id; } b[N], Q[N]; bool cmp(Build a, Build b) { return a.x < b.x; } bool cmpid(Build a, Build b) { return a.id < b.id; } double cal(Build a, Build b) { double dx = fabs(b.x - a.x); double dy = b.h - a.h; return dy / dx; } int main() { int cas = 0; scanf("%d", &t); while (t--) { scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%lf%lf", &b[i].x, &b[i].h); b[i].isq = false; b[i].id = i; } scanf("%d", &q); for (int i = n; i < n + q; i++) { scanf("%lf", &b[i].x); b[i].h = 0; b[i].isq = true; b[i].id = i; } n += q; sort(b, b + n, cmp); Q[0] = b[0]; int top = 0; int u = 0; for (int i = 1; i < n; i++) { if (b[i].isq == false) { while (top && cal(b[i], Q[top]) < cal(Q[top], Q[top - 1])) top--; Q[++top] = b[i]; } else { int tmp = top; while (tmp && cal(b[i], Q[tmp]) < cal(b[i], Q[tmp - 1])) tmp--; b[i].s[u] = cal(b[i], Q[tmp]); } } reverse(b, b + n); Q[0] = b[0]; top = 0; u = 1; for (int i = 1; i < n; i++) { if (b[i].isq == false) { while (top && cal(b[i], Q[top]) < cal(Q[top], Q[top - 1])) top--; Q[++top] = b[i]; } else { int tmp = top; while (tmp && cal(b[i], Q[tmp]) < cal(b[i], Q[tmp - 1])) tmp--; b[i].s[u] = cal(b[i], Q[tmp]); } } sort(b, b + n, cmpid); printf("Case #%d:\n", ++cas); for (int i = 0; i < n; i++) { if (b[i].isq) { double ans = pi - atan(b[i].s[0]) - atan(b[i].s[1]); ans = ans / pi * 180; printf("%.10lf\n", ans); } } } return 0; }
HDU 5033 Building(北京网络赛B题)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。