# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
850409 | 2023-09-16T14:08:35 Z | Ahmed57 | Boarding Passes (BOI22_passes) | C++17 | 7 ms | 76376 KB |
#include <bits/stdc++.h> using namespace std; int c = 0; vector<int> arr[10]; int pref[1024][10001],suf[1024][10001]; long double dp[1024]; int sz; long double ge(double x){ if(x<=2)return 0; return (x*(x-1))/4; } long double solve(int mask){ if(mask==(1<<c)-1){ return 0; } if(dp[mask]==dp[mask])return dp[mask]; long double ans = 1000000000.0; for(int j = 0;j<c;j++){ if(!(mask&(1<<j))){ long long all = 0 , xd = 0; for(int e = 0;e<arr[j].size();e++){ all+=suf[arr[j][e]][mask]; } ans = min(ans,solve(mask^(1<<j))+all+xd+ge(arr[j].size())); for(int e = 0;e<arr[j].size();e++){ all-=suf[arr[j][e]][mask]; xd+=pref[arr[j][e]][mask]; ans = min(ans,solve(mask^(1<<j))+all+xd+ge(e+1)+ge(arr[j].size()-e-1)); } } } return dp[mask] = ans; } int main(){ string s;cin>>s; map<char,int> x; int ind = -1; sz = s.size(); for(auto i:s){ ind++; if(x[i]==0){ x[i] = ++c; arr[c-1].push_back(ind); }else{ arr[x[i]-1].push_back(ind); } } for(int mask = 0;mask<(1<<c);mask++){ for(int i = 0;i<sz;i++){ pref[i][mask] = (mask&(1<<(x[s[i]]-1))?1:0); if(i)pref[i][mask]+=pref[i-1][mask]; } for(int i = sz-1;i>=0;i--){ suf[i][mask] =(mask&(1<<(x[s[i]]-1))?1:0); if(i<sz-1)suf[i][mask]+=suf[i+1][mask]; } } memset(dp,-1,sizeof dp); cout<<setprecision(4)<<fixed<<solve(0)<<endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 76376 KB | found '100800.5000000000', expected '100800.5000000000', error '0.0000000000' |
2 | Correct | 1 ms | 4444 KB | found '0.0000000000', expected '0.0000000000', error '-0.0000000000' |
3 | Correct | 1 ms | 4444 KB | found '0.0000000000', expected '0.0000000000', error '-0.0000000000' |
4 | Incorrect | 1 ms | 4444 KB | 1st numbers differ - expected: '1.0000000000', found: '0.0000000000', error = '1.0000000000' |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 6492 KB | 1st numbers differ - expected: '1.0000000000', found: '0.0000000000', error = '1.0000000000' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 6492 KB | 1st numbers differ - expected: '1.0000000000', found: '0.0000000000', error = '1.0000000000' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 76376 KB | found '100800.5000000000', expected '100800.5000000000', error '0.0000000000' |
2 | Correct | 1 ms | 4444 KB | found '0.0000000000', expected '0.0000000000', error '-0.0000000000' |
3 | Correct | 1 ms | 4444 KB | found '0.0000000000', expected '0.0000000000', error '-0.0000000000' |
4 | Incorrect | 1 ms | 4444 KB | 1st numbers differ - expected: '1.0000000000', found: '0.0000000000', error = '1.0000000000' |
5 | Halted | 0 ms | 0 KB | - |