# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1098958 | 2024-10-10T11:33:38 Z | crafticat | Boarding Passes (BOI22_passes) | C++17 | 41 ms | 348 KB |
#include <bits/stdc++.h> #include <utility> using ll = long long; using namespace std; #define F0R(i, n) for (ll i= 0; i < n;i++) template<typename T> using V = vector<T>; using vi = V<ll>; using vvi = V<vi>; #define pb push_back using pi = pair<ll, ll>; #define all(x) begin(x), end(x) #define f first #define s second #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; template <class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; double add(vi x, Tree<int> &points) { double expected = 0; F0R(i, x.size()) { points.insert(x[i]); } F0R(i, x.size()) { int lef = points.order_of_key(x[i]); int rig = points.size() - lef - 1; expected += min(lef, rig) / 2.0; } return expected; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); string str; cin >> str; set<int> ind; vvi groups(26); F0R(i, str.size()) { int id = str[i] - 'A'; groups[id].pb(i); ind.insert(id); } vi perm; for (auto x : ind) perm.pb(x); double ans = 1e9; do { Tree<int> points; double expected = 0; for (auto x : perm) { expected += add(groups[x], points); } ans = min(ans, expected); } while (std::next_permutation(all(perm))); cout << ans; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | 1st numbers differ - expected: '100800.5000000000', found: '100800.0000000000', error = '0.0000049603' |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | found '1.0000000000', expected '1.0000000000', error '0.0000000000' |
2 | Correct | 1 ms | 348 KB | found '1225.0000000000', expected '1225.0000000000', error '0.0000000000' |
3 | Incorrect | 41 ms | 348 KB | 1st numbers differ - expected: '1023.0000000000', found: '597.5000000000', error = '0.4159335288' |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | found '1.0000000000', expected '1.0000000000', error '0.0000000000' |
2 | Correct | 1 ms | 348 KB | found '1225.0000000000', expected '1225.0000000000', error '0.0000000000' |
3 | Incorrect | 41 ms | 348 KB | 1st numbers differ - expected: '1023.0000000000', found: '597.5000000000', error = '0.4159335288' |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | 1st numbers differ - expected: '100800.5000000000', found: '100800.0000000000', error = '0.0000049603' |
2 | Halted | 0 ms | 0 KB | - |