# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
722940 | dxz05 | Boarding Passes (BOI22_passes) | C++17 | 2045 ms | 2064 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define MP make_pair
const int N = 100500;
long long exp_inv(ll n){
return (long double) n * (n - 1); // should be divided by 4
}
ll dp[1 << 15];
void solve(){
string s;
cin >> s;
int n = (int)s.size();
vector<vector<int>> pos;
map<char, int> id;
for (int i = 0; i < n; i++){
if (id.find(s[i]) == id.end()){
id[s[i]] = (int) id.size();
pos.emplace_back();
}
pos[id[s[i]]].push_back(i);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |