結果
問題 | No.5016 Worst Mayor |
ユーザー | Kahuka |
提出日時 | 2023-04-29 18:58:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 11,131 bytes |
コンパイル時間 | 2,672 ms |
コンパイル使用メモリ | 212,496 KB |
実行使用メモリ | 24,420 KB |
スコア | 13,144,154,516 |
平均クエリ数 | 392.00 |
最終ジャッジ日時 | 2023-04-29 18:59:56 |
合計ジャッジ時間 | 40,187 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge11 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,923 ms
23,328 KB |
testcase_01 | AC | 1,932 ms
23,940 KB |
testcase_02 | AC | 1,920 ms
23,832 KB |
testcase_03 | AC | 1,943 ms
23,676 KB |
testcase_04 | AC | 1,844 ms
24,060 KB |
testcase_05 | AC | 1,941 ms
23,964 KB |
testcase_06 | AC | 1,897 ms
24,336 KB |
testcase_07 | AC | 1,945 ms
23,388 KB |
testcase_08 | AC | 1,897 ms
23,340 KB |
testcase_09 | AC | 1,946 ms
24,048 KB |
testcase_10 | AC | 1,918 ms
23,952 KB |
testcase_11 | AC | 1,937 ms
23,976 KB |
testcase_12 | AC | 1,925 ms
24,072 KB |
testcase_13 | AC | 1,943 ms
23,976 KB |
testcase_14 | AC | 1,919 ms
23,424 KB |
testcase_15 | AC | 1,949 ms
23,316 KB |
testcase_16 | AC | 1,925 ms
24,324 KB |
testcase_17 | AC | 1,927 ms
23,952 KB |
testcase_18 | AC | 1,953 ms
24,252 KB |
testcase_19 | AC | 1,932 ms
23,952 KB |
testcase_20 | AC | 1,953 ms
23,340 KB |
testcase_21 | AC | 1,910 ms
23,484 KB |
testcase_22 | AC | 1,986 ms
23,580 KB |
testcase_23 | AC | 1,926 ms
23,964 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 1,923 ms
23,520 KB |
testcase_26 | AC | 1,931 ms
24,192 KB |
testcase_27 | AC | 1,925 ms
23,964 KB |
testcase_28 | AC | 1,892 ms
24,264 KB |
testcase_29 | AC | 1,929 ms
23,520 KB |
testcase_30 | AC | 1,953 ms
23,964 KB |
testcase_31 | AC | 1,925 ms
23,556 KB |
testcase_32 | AC | 1,926 ms
24,420 KB |
testcase_33 | AC | 1,949 ms
23,964 KB |
testcase_34 | AC | 1,925 ms
23,460 KB |
testcase_35 | AC | 1,953 ms
23,964 KB |
testcase_36 | AC | 1,921 ms
24,276 KB |
testcase_37 | AC | 1,951 ms
23,964 KB |
testcase_38 | AC | 1,926 ms
23,988 KB |
testcase_39 | AC | 1,950 ms
23,976 KB |
testcase_40 | AC | 1,929 ms
23,580 KB |
testcase_41 | AC | 1,955 ms
23,592 KB |
testcase_42 | AC | 1,959 ms
24,264 KB |
testcase_43 | AC | 1,953 ms
24,264 KB |
testcase_44 | AC | 1,956 ms
23,580 KB |
testcase_45 | AC | 1,955 ms
23,952 KB |
testcase_46 | AC | 1,936 ms
23,988 KB |
testcase_47 | AC | 1,957 ms
23,964 KB |
testcase_48 | AC | 1,927 ms
24,264 KB |
testcase_49 | AC | 1,955 ms
24,228 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0; i<n; i++) #define reps(i,s,n) for(int i=s; i<n; i++) #define per(i,n) for(int i=n-1; i>=0; i--) #define pers(i,n,s) for(int i=n-1; i>=s; i--) #define all(v) v.begin(),v.end() #define fi first #define se second #define pb push_back #define si(v) int(v.size()) #define lb(v,n) lower_bound(all(v),n) #define lbi(v,n) int(lower_bound(all(v),n) - v.begin()) #define ub(v,n) upper_bound(all(v),n) #define ubi(v,n) int(upper_bound(all(v),n) - v.begin()) #define mod 1000000007 #define infi 1010000000 #define infl 1100000000000000000 #define outve(v) {for(auto i : v) cout << i << " ";cout << endl;} #define outmat(v) for(auto i : v){for(auto j : i) cout << j << " ";cout << endl;} #define in(n,v) for(int i=0; i<(n); i++){cin >> v[i];} #define IN(n,m,v) rep(i,n) rep(j,m){cin >> v[i][j];} #define cyes cout << "Yes" << endl #define cno cout << "No" << endl #define cYES cout << "YES" << endl #define cNO cout << "NO" << endl #define csp << " " << #define outset(n) cout << fixed << setprecision(n); using namespace std; using ll = long long; using ull = unsigned long long; using uint = unsigned int; using ld = long double; using vi = vector<int>; using vvi = vector<vector<int>>; using vd = vector<double>; using vvd = vector<vector<double>>; using vl = vector<ll>; using vvl = vector<vector<ll>>; using vs = vector<string>; using pii = pair<int,int>; using pll = pair<ll,ll>; template<typename T> using ve = vector<T>; template<typename T> using vv = vector<vector<T>>; template<typename T> using pq2 = priority_queue<T>; template<typename T> using pq1 = priority_queue<T,vector<T>,greater<T>>; template<typename T> bool chmax(T &a, T b) {if(a < b) {a = b;return 1;}return 0;} template<typename T> bool chmin(T &a, T b) {if(a > b) {a = b;return 1;}return 0;} int popcnt(uint n) {return __builtin_popcount(n);} int popcntl(ull n) {return __builtin_popcountll(n);} int bsr(uint n) {return 31 - __builtin_clz(n);} int bsrl(ull n) {return 63 - __builtin_clzll(n);} int bsf(uint n) {return __builtin_ctz(n);} int bsfl(ull n) {return __builtin_ctzll(n);} unsigned int xorshift() { static unsigned int tx = 123456789, ty=362436069, tz=521288629, tw=88675123; unsigned int tt = (tx^(tx<<11)); tx = ty; ty = tz; tz = tw; return ( tw=(tw^(tw>>19))^(tt^(tt>>8)) ); } double TIME_LIMIT = 1.80; int LOCAL = 0; int TEATER = 0; constexpr int dh[4] = {-1,0,1,0}; constexpr int dw[4] = {0,-1,0,1}; constexpr int N = 14; constexpr int M = 3000; constexpr int T = 400; int home[M]; int company[M]; ll money,people; vvi road; void solve(){ int ti = clock(); double time = 1.0 * (clock() - ti) / CLOCKS_PER_SEC; int m,t; cin >> m >> t; int road[N][N]; rep(i,N) rep(j,N) road[i][j] = 0; int road_num = 0; rep(i,m) { int a,b,c,d; cin >> a >> b >> c >> d; a--,b--,c--,d--; home[i] = a*N+b; company[i] = c*N+d; } int build_road = 1; ll road_incom = 0; ll next_road_incom = -1; int next_hwk = -1; { ll score_max = -infl; int hwk = -1; rep(a,N) rep(b,N) rep(k,4) if(k == 2 || k == 3){ road[a][b] |= 1<<k; road[a+dh[k]][b+dw[k]] |= 1<<((k+2)%4); if(!(a == 7 && b == 7 && k == 2)) { road[a][b] &= ~(1<<k); road[a+dh[k]][b+dw[k]] &= ~(1<<((k+2)%4)); continue; } ll D[196][196]; int cn[196][196]; rep(i,N) rep(j,N){ int s = i*N+j; rep(h,N) rep(w,N) D[s][h*N+w] = infi; rep(h,N) rep(w,N) cn[s][h*N+w] = 0; pq1<ll> pq; pq.push(0*10000+i*100+j); while (!pq.empty()) { ll chw = pq.top(); pq.pop(); ll c = chw/10000; int h = (chw%10000)/100, w = chw%100; if(D[s][h*N+w] < c) continue; rep(k,4) { int nh = h + dh[k], nw = w + dw[k]; if(nh < 0 || nh >= N || nw < 0 || nw >= N) continue; if(chmin(D[s][nh*N+nw], c+(road[h][w]&1<<k ? 223 : 10000))) { pq.push(D[s][nh*N+nw]*10000ll + nh*100 + nw); cn[s][nh*N+nw] = cn[s][h*N+w]+(road[h][w]&1<<k ? 1 : 0); } } } } ll c = 0; rep(i,M) c += 60ll*cn[home[i]][company[i]]; if(chmax(score_max,c)) hwk = a*1000 + b*10 + k; road[a][b] &= ~(1<<k); road[a+dh[k]][b+dw[k]] &= ~(1<<((k+2)%4)); } next_hwk = hwk; next_road_incom = score_max; } money = 1000000, people = 1; rep(t,T){ if(LOCAL == 0) cin >> money >> people; if(money == -1) return; if(build_road==1 && people > 0 && money > ll(10000000.0/sqrt((double)people))){ if(road_num < 100 && next_hwk >= 0){ int x = next_hwk/1000, y = (next_hwk%1000)/10, k = next_hwk%10; int z = x + dh[k], w = y+dw[k]; cout << 1 csp x+1 csp y+1 csp z+1 csp w+1 << endl; if(LOCAL) money -= ll(10000000.0/sqrt((double)people)); road[x][y] |= 1<<k; road[z][w] |= 1<<((k+2)%4); road_num++; road_incom += next_road_incom; ll score_max = -infl; int hwk = -1; rep(a,N) rep(b,N) { if(build_road == 0) break; int ff = 0; rep(kk,4){ int nh = a + dh[kk], nw = b + dw[kk]; if(nh < 0 || nh >= N || nw < 0 || nw >= N) continue; if(road[nh][nw] & 1 << kk) ff++; } if(ff == 0) continue; rep(k,4) if(k == 2 || k == 3) { int nh = a + dh[k], nw = b + dw[k]; if(nh < 0 || nh >= N || nw < 0 || nw >= N) continue; if(road[a][b] & 1 << k) continue; time = 1.0 * (clock() - ti) / CLOCKS_PER_SEC; if(time > TIME_LIMIT) { build_road = 0; break; } if(hwk != -1) { if(xorshift()%20 != 0) continue; } road[a][b] |= 1<<k; road[a+dh[k]][b+dw[k]] |= 1<<((k+2)%4); ll D[196][196]; int cn[196][196]; rep(i,N) rep(j,N){ int s = i*N+j; rep(h,N) rep(w,N) D[s][h*N+w] = infi; rep(h,N) rep(w,N) cn[s][h*N+w] = 0; pq1<ll> pq; pq.push(0*10000+i*100+j); while (!pq.empty()) { ll chw = pq.top(); pq.pop(); ll c = chw/10000; int h = (chw%10000)/100, w = chw%100; if(D[s][h*N+w] < c) continue; rep(k,4) { int nh = h + dh[k], nw = w + dw[k]; if(nh < 0 || nh >= N || nw < 0 || nw >= N) continue; if(chmin(D[s][nh*N+nw], c+(road[h][w]&1<<k ? 223 : 10000))) { pq.push(D[s][nh*N+nw]*10000ll + nh*100 + nw); cn[s][nh*N+nw] = cn[s][h*N+w]+(road[h][w]&1<<k ? 1 : 0); } } } } ll c = 0; rep(i,M) c += 60ll*(ll)cn[home[i]][company[i]]; if(chmax(score_max,c)) hwk = a*1000 + b*10 + k; road[a][b] &= ~(1<<k); road[a+dh[k]][b+dw[k]] &= ~(1<<((k+2)%4)); } } next_hwk = hwk; next_road_incom = score_max; }else{ build_road = 0; cout << 3 << endl; if(LOCAL) money += 50000; } }else{ if(build_road == 1){ if(people < 40){ cout << 2 << endl; if(LOCAL) people++; }else{ cout << 3 << endl; if(LOCAL) money += 50000; } }else { cout << 3 << endl; if(LOCAL) money += 50000; } } if(LOCAL){ ll D[196][196]; int cn[196][196]; rep(i,N) rep(j,N){ int s = i*N+j; rep(h,N) rep(w,N) D[s][h*N+w] = infi; rep(h,N) rep(w,N) cn[s][h*N+w] = 0; pq1<ll> pq; pq.push(0*10000+i*100+j); while (!pq.empty()) { ll chw = pq.top(); pq.pop(); ll c = chw/10000; int h = (chw%10000)/100, w = chw%100; if(D[s][h*N+w] < c) continue; rep(k,4) { int nh = h + dh[k], nw = w + dw[k]; if(nh < 0 || nh >= N || nw < 0 || nw >= N) continue; if(chmin(D[s][nh*N+nw], c+(road[h][w]&1<<k ? 223 : 10000))) { pq.push(D[s][nh*N+nw]*10000ll + nh*100 + nw); cn[s][nh*N+nw] = cn[s][h*N+w]+(road[h][w]&1<<k ? 1 : 0); } } } } ll c = 0; rep(i,M) c += 60ll*cn[home[i]][company[i]]; cerr << t csp money csp people csp c csp next_road_incom csp time << endl; money += c; } } rep(i,N) { rep(j,N) { int f = 0; rep(k,4) if(road[i][j] & 1 << k) f++; if(f > 0) cerr << "o "; else cerr << ". "; } cerr << endl; } time = 1.0 * (clock() - ti) / CLOCKS_PER_SEC; cerr << time csp road_num csp money << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }