训练时间:2019-04-05
一场读错三个题,队友恨不得手刃了我这个坑B。
A I J 简单,不写了。
#include <bits/stdc++.h> using namespace std; typedef long long LL; const int maxn = 1000 + 100; const double eps = 1e-8; int dcmp(double x) { if (x > eps) return 1; return x < -eps ? -1 : 0; } struct Point { double x, y; Point() {} Point(double _x, double _y) { x = _x, y = _y; } Point operator - (const Point &b) const { return Point(x-b.x, y-b.y); } bool operator == (const Point& b) const { return dcmp(x - b.x) == 0 && dcmp(y - b.y) == 0; } }; typedef Point Vector; struct Seg { Point st, ed; Seg() {}; Seg(Point a, Point b) { st = a, ed = b; } }; double Cross(Vector a, Vector b) { return a.x*b.y - a.y*b.x; } double Dot(Vector a, Vector b) { return a.x*b.x + a.y*b.y; } bool OnSegment(Point p, Point a1, Point a2) { return dcmp(Cross(a1-p, a2-p)) == 0 && dcmp(Dot(a1-p, a2-p)) < 0; } bool SegmentIntersection(Point a1, Point a2, Point b1, Point b2) { if (a1 == b1 || a1 == b2 || a2 == b1 || a2 == b2) return true; if (OnSegment(a1, b1, b2) || OnSegment(a2, b1, b2) || OnSegment(b1, a1, a2) || OnSegment(b2, a1, a2)) return true; double c1 = Cross(a2-a1, b1-a1), c2 = Cross(a2-a1, b2-a1), c3 = Cross(b2-b1, a1-b1), c4 = Cross(b2-b1, a2-b1); return dcmp(c1) * dcmp(c2) < 0 && dcmp(c3) * dcmp(c4) < 0; } vector<int> v[maxn]; int vis[maxn]; void build(int x, int y) { v[x].push_back(y); v[y].push_back(x); } bool dfs(int x) { for (int y : v[x]) { if (vis[y] == vis[x]) return false; if (vis[y] == -1) { vis[y] = !vis[x]; if (!dfs(y)) return false; } } return true; } Point st[maxn]; Seg s[maxn]; int n, p; int main() { scanf("%d%d", &n, &p); for (int i = 1; i <= n; i++) scanf("%lf%lf", &st[i].x, &st[i].y); for (int i = 1; i <= p; i++) { double x, y; int id; scanf("%d%lf%lf", &id, &x, &y); s[i] = Seg(st[id], Point(x, y)); } for (int i = 1; i <= p; i++) for (int j = i+1; j <= p; j++) { if (s[i].st == s[j].st) continue; if (SegmentIntersection(s[i].st, s[i].ed, s[j].st, s[j].ed)) build(i, j); } memset(vis, -1, sizeof(vis)); for (int i = 1; i <= p; i++) if (vis[i] == -1) { vis[i] = 0; if (!dfs(i)) return printf("impossible "), 0; } printf("possible "); }
#include <bits/stdc++.h> using namespace std; typedef long long LL; const int maxn = 1e6 + 100; const LL INF = 0x3f3f3f3f3f3f3f3f; const double eps = 1e-8; LL dp[maxn]; int n, r, p; LL d(int n) { if (n == 1) return 0; if (dp[n] != INF) return dp[n]; for (int i = 1; i < n; i++) dp[n] = min(dp[n], d( (int)ceil(1.0*n/(i+1)) )+1ll*p*i+r); return dp[n]; } int main() { scanf("%d%d%d", &n, &r, &p); for (int i = 1; i <= n; i++) dp[i] = INF; printf("%lld ", d(n)); }
#include <bits/stdc++.h> using namespace std; typedef long long LL; const int maxn = 2500*4 + 100; const int maxm = 2500*3 + 100; int n; map<LL, int> M; LL x[maxn], y[maxn]; LL tmp[maxn]; int v[maxm], last[maxm], nxt[maxm]; int lnk[maxn], vis[maxn], ans[maxn]; int cnt, tot; void build(int x, int y) { ++tot; v[tot] = y; nxt[tot] = last[x]; last[x] = tot; } bool dfs(int x) { for (int i = last[x]; i; i = nxt[i]) { int y = v[i]; if (!vis[y]) { vis[y] = 1; if (lnk[y] == -1 || dfs(lnk[y])) { lnk[y] = x; ans[x] = y; return true; } } } return false; } int hungary() { int res = 0; memset(lnk, -1, sizeof(lnk)); for (int i = 1; i <= n; i++) { memset(vis, 0, sizeof(vis)); if (dfs(i)) res++; } return res; } char get(LL sum, int id) { if (sum == x[id] + y[id]) return '+'; if (sum == x[id] - y[id]) return '-'; if (sum == x[id] * y[id]) return '*'; } int main() { scanf("%d", &n); cnt = n; for (int i = 1; i <= n; i++) { scanf("%lld%lld", &x[i], &y[i]); LL a = x[i] + y[i], b = x[i] - y[i], c = x[i] * y[i]; if (!M.count(a)) M[a] = ++cnt; build(i, M[a]); tmp[M[a]] = a; if (!M.count(b)) M[b] = ++cnt; build(i, M[b]); tmp[M[b]] = b; if (!M.count(c)) M[c] = ++cnt; build(i, M[c]); tmp[M[c]] = c; } if (hungary() != n) return printf("impossible "), 0; for (int i = 1; i <= n; i++) printf("%lld %c %lld = %lld ", x[i], get(tmp[ans[i]], i), y[i], tmp[ans[i]]); }
#include <bits/stdc++.h> using namespace std; typedef long long LL; const int maxn = 2e5 + 100; int n; int a[maxn], b[maxn], c[maxn]; int T[maxn], A[maxn]; LL cnt = 0; void merge_sort(int x, int y) { if (y-x > 1) { int m = x + (y-x)/2; int p = x, q = m, i = x; merge_sort(x, m); merge_sort(m, y); while(p < m || q < y) { if (q >= y || (p < m && A[p] <= A[q])) T[i++] = A[p++]; else T[i++] = A[q++], cnt += m-p; } for (i = x; i < y; i++) A[i] = T[i]; } } void mapping(int a[], int b[]) { int m[maxn]; for (int i = 1; i <= n; i++) m[a[i]] = i; for (int i = 1; i <= n; i++) A[i] = m[b[i]]; merge_sort(1, n+1); } int main() { scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); for (int i = 1; i <= n; i++) scanf("%d", &b[i]); for (int i = 1; i <= n; i++) scanf("%d", &c[i]); mapping(a, b); mapping(a, c); mapping(b, c); printf("%lld ", (1ll * n * (n-1) - cnt) / 2); }