# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1079293 | 2024-08-28T12:42:21 Z | _rain_ | Coin Collecting (JOI19_ho_t4) | C++14 | 1000 ms | 180820 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long #define fixbug false void SETIO(string name = ""){ if (name=="") return; freopen((name+".inp").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout); return; } #define fi first #define se second #define MASK(x) ((ll)(1)<<(x)) #define BIT(mask,x) (((mask)>>(x))&(1)) const int maxn = 20; ll dp[maxn+2][MASK(maxn)]; int n , x[maxn+2] , y[maxn+2]; vector<pair<int,int>> p; int cost(int x1 , int y1 , int x2 , int y2){ return abs(x1 - x2) + abs(y1 - y2); } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); SETIO(""); cin >> n; for (int i = 1; i <= 2*n; ++i) cin >> x[i] >> y[i]; memset(dp,0x3f,sizeof dp); for (int i = 1; i <= n; ++i) for (int j = 1 ; j <= 2; ++j) p.push_back({i,j}); dp[0][0] = 0; for (int t = 1; t <= 2*n; ++t) { for (int mask = 0; mask < MASK(2*n); ++mask){ for (int i = 0; i < 2 * n; ++i) if (!BIT(mask,i)){ dp[t][mask|MASK(i)] = min(dp[t][mask|MASK(i)] , dp[t - 1][mask] + cost(p[i].fi , p[i].se , x[t] , y[t])); } } } if (fixbug){ cout << "(DEBUG)\n"; for (int layer = 1; layer <= 2 * n; ++layer){ for (int mask = 0; mask < MASK(2*n); ++mask){ cout << dp[layer][mask] << ' '; } cout << '\n'; } } cout << dp[2 * n][MASK(2 * n) - 1]; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 81 ms | 180816 KB | Output is correct |
2 | Correct | 87 ms | 180820 KB | Output is correct |
3 | Correct | 87 ms | 180812 KB | Output is correct |
4 | Execution timed out | 1050 ms | 180816 KB | Time limit exceeded |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 81 ms | 180816 KB | Output is correct |
2 | Correct | 87 ms | 180820 KB | Output is correct |
3 | Correct | 87 ms | 180812 KB | Output is correct |
4 | Execution timed out | 1050 ms | 180816 KB | Time limit exceeded |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 81 ms | 180816 KB | Output is correct |
2 | Correct | 87 ms | 180820 KB | Output is correct |
3 | Correct | 87 ms | 180812 KB | Output is correct |
4 | Execution timed out | 1050 ms | 180816 KB | Time limit exceeded |
5 | Halted | 0 ms | 0 KB | - |