/* @题目: B. Customising the Track * @算法: 数学 * @Author: Blore * @Language: c++11 * @Date: 2021-07-07 23:09:04 * @LastEditors: Blore * @LastEditTime: 2021-07-07 23:13:00 */ #include<cstdio> #include<algorithm> #define ll long long usingnamespace std; ll read() { ll p = 0, f = 1; char c = getchar(); while (c < 48 || c > 57) { if (c == '-') f = -1; c = getchar(); } while (c >= 48 && c <= 57) p = (p << 1) + (p << 3) + c - 48, c = getchar(); return p * f; } intmain() { int t = read(); while (t--) { ll sum = 0; int n = read(); for (int i = 1; i <= n; i++) sum += read(); ll cnt1 = sum - n * (sum / n); ll cnt2 = n - cnt1; printf("%lld\n", cnt1 * cnt2); } return0; }
/* * @题目: C. Need for Pink Slips * @算法: DFS * @Author: Blore * @Language: c++11 * @Date: 2021-07-13 22:36:43 * @LastEditors: Blore * @LastEditTime: 2021-07-13 23:05:45 */ #include<cstdio> #include<algorithm> usingnamespace std; constdouble eps = 1e-10; double v, ans; voiddfs(int now, double pos, double c, double m, double p, int tim) { if (now == 1) { if (c < eps) return; pos *= c; if (c <= v + eps) { if (m > eps) m += c / 2, p += c / 2; else p += c; c = 0; } else { c -= v; if (m > eps) m += v / 2, p += v / 2; else p += v; } } elseif (now == 2) { if (m < eps) return; pos *= m; if (m <= v + eps) { if (c > eps) c += m / 2, p += m / 2; else p += m; m = 0; } else { m -= v; if (c > eps) c += v / 2, p += v / 2; else p += v; } } ans += pos * p * tim; dfs(1, pos, c, m, p, tim + 1); dfs(2, pos, c, m, p, tim + 1); } intmain() { int t; scanf("%d", &t); while (t--) { double c, m, p; scanf("%lf%lf%lf%lf", &c, &m, &p, &v); ans = p; dfs(1, 1, c, m, p, 2); dfs(2, 1, c, m, p, 2); printf("%.12lf\n", ans); } }
D1. RPD and Rap Sheet (Easy Version)
题面
(粗糙翻译) 定义:k进制异或为对应位上 (a+b) mod k, a和b的k进制异或缩写为 $ a\oplus _kb $
/* * @题目: D2. RPD and Rap Sheet (Hard Version) * @算法: 构造 * @Author: Blore * @Language: c++11 * @Date: 2021-07-08 00:20:02 * @LastEditors: Blore * @LastEditTime: 2021-07-13 12:29:54 */ #include<cstdio> #include<iostream> usingnamespace std; int mod; intkXOR(int a, int b) { int res = 0; int k = 1; if (a % 2 == 1) swap(a, b); while (a || b) { res += (a % mod - b % mod + mod) % mod * k; a /= mod, b /= mod, k *= mod; } return res; } intmain() { int t; scanf("%d", &t); while (t--) { int base = 0; int n, u; std::cin >> n >> mod; int res; for (int i = 0; i < n; i++) { if (i) cout << kXOR(i, i - 1) << endl; else cout << '0' << endl; std::cin >> res; if (res == 1) break; } } return0; }
/* * @题目: E. The Final Pursuit * @算法: 构造 * @Author: Blore * @Language: c++11 * @Date: 2021-08-13 10:46:05 * @LastEditors: Blore * @LastEditTime: 2021-08-13 11:40:01 */ #include<bits/stdc++.h> #define pb push_back #define mp make_pair #define fi first #define se second #define maxn 65536 #define maxm 200010 #define rep(i, l, r) for (int i = l; i <= r; i++) #define per(i, r, l) for (int i = r; i >= l; i--) #define ll long long usingnamespace std; constint inf = 0x7fffffff; intread() { int p = 0, f = 1; char c = getchar(); while (c < 48 || c > 57) { if (c == '-') f = -1; c = getchar(); } while (c >= 48 && c <= 57) p = (p << 1) + (p << 3) + (c ^ 48), c = getchar(); return p * f; } vector<int> g[maxn]; bool vis[maxn]; int id[maxn], idinv[maxn]; int col[maxn]; intmain() { int t = read(); while (t--) { int n = read(); int m = n * (1 << (n - 1)); int N = 1 << n; rep(i, 0, N - 1) g[i].clear(), vis[i] = id[i] = 0; rep(i, 1, m) { int u = read(), v = read(); g[u].pb(v), g[v].pb(u); } int cnt = 1; vector<int> cur, nxt; vis[0] = 1, id[0] = 0; int power = 1; for (auto i : g[0]) { vis[i] = 1, id[i] = power; cur.pb(i); cnt++; power <<= 1; } while (cnt != N) { nxt.clear();
for (auto i : cur) for (auto j : g[i]) if (!vis[j]) id[j] |= id[i]; for (auto i : cur) for (auto j : g[i]) if (!vis[j]) nxt.pb(j), vis[j] = 1, cnt++; cur = nxt; } rep(i, 0, N - 1) idinv[id[i]] = i; rep(i, 0, N - 1) printf("%d ", idinv[i]); putchar('\n'); int f = n; while (!(f & 1)) f >>= 1; if (f != 1) { puts("-1"); continue; } rep(i, 0, N - 1) { int s = 0; rep(j, 0, n - 1) if (i & (1 << j)) s ^= j; col[idinv[i]] = s; } rep(i, 0, N - 1) printf("%d ", col[i]); putchar('\n'); } return0; }