結果

問題 No.5016 Worst Mayor
ユーザー FplusFplusFFplusFplusF
提出日時 2023-04-29 14:47:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 6,496 bytes
コンパイル時間 4,337 ms
コンパイル使用メモリ 242,656 KB
実行使用メモリ 155,860 KB
スコア 3,066,379,256
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 14:48:23
合計ジャッジ時間 35,972 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 580 ms
155,700 KB
testcase_01 AC 565 ms
155,460 KB
testcase_02 AC 557 ms
155,144 KB
testcase_03 AC 594 ms
154,944 KB
testcase_04 AC 524 ms
155,344 KB
testcase_05 AC 514 ms
155,300 KB
testcase_06 AC 625 ms
155,544 KB
testcase_07 AC 557 ms
155,516 KB
testcase_08 AC 462 ms
155,068 KB
testcase_09 AC 527 ms
155,716 KB
testcase_10 AC 476 ms
155,440 KB
testcase_11 AC 582 ms
155,752 KB
testcase_12 AC 535 ms
155,228 KB
testcase_13 AC 564 ms
155,520 KB
testcase_14 AC 505 ms
155,552 KB
testcase_15 AC 520 ms
155,360 KB
testcase_16 AC 625 ms
155,516 KB
testcase_17 AC 521 ms
155,664 KB
testcase_18 AC 541 ms
155,076 KB
testcase_19 AC 511 ms
155,336 KB
testcase_20 AC 591 ms
155,488 KB
testcase_21 AC 494 ms
155,504 KB
testcase_22 AC 566 ms
155,348 KB
testcase_23 AC 450 ms
155,680 KB
testcase_24 AC 633 ms
154,964 KB
testcase_25 AC 637 ms
155,244 KB
testcase_26 AC 595 ms
155,172 KB
testcase_27 AC 443 ms
155,632 KB
testcase_28 AC 518 ms
155,768 KB
testcase_29 AC 658 ms
155,760 KB
testcase_30 AC 602 ms
155,668 KB
testcase_31 AC 522 ms
155,724 KB
testcase_32 AC 548 ms
154,908 KB
testcase_33 AC 566 ms
155,672 KB
testcase_34 AC 514 ms
155,224 KB
testcase_35 AC 557 ms
155,628 KB
testcase_36 AC 560 ms
155,712 KB
testcase_37 AC 499 ms
155,220 KB
testcase_38 AC 608 ms
155,152 KB
testcase_39 AC 555 ms
155,600 KB
testcase_40 AC 534 ms
155,724 KB
testcase_41 AC 570 ms
155,512 KB
testcase_42 AC 558 ms
155,664 KB
testcase_43 AC 485 ms
155,308 KB
testcase_44 AC 512 ms
155,612 KB
testcase_45 AC 539 ms
155,392 KB
testcase_46 AC 486 ms
155,108 KB
testcase_47 AC 490 ms
155,668 KB
testcase_48 AC 549 ms
155,364 KB
testcase_49 AC 449 ms
155,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF=1e9;
using pii=pair<int,int>;
using tii=tuple<int,int,int>;
#define rep(i,n) for (int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
vector<int> pi={0,1,0,-1},pj={1,0,-1,0};
int to(int i,int j){
    return i*14+j;
}
pii back(int x){
    return {x/14,x%14};
}
struct input{
    int n,t;
    vector<int> s,g;
    void input_cin(){
        cin >> n >> t;
        s.resize(n);
        g.resize(n);
        rep(i,n){
            int a,b,c,d;
            cin >> a >> b >> c >> d;
            a--;
            b--;
            c--;
            d--;
            s[i]=to(a,b);
            g[i]=to(c,d);
        }
    }
}input;
struct solver{
    vector<vector<int>> people;
    vector<vector<int>> root(vector<vector<pii>> &g){
        vector<vector<int>> ret(14*14,vector<int>(14*14,0));
        rep(i,14*14){
            vector<int> dist(14*14,INF);
            vector<int> prev(14*14);
            priority_queue<pii> pq;
            dist[i]=0;
            pq.push({i,i});
            while(!pq.empty()){
                int x,d;
                tie(x,d)=pq.top();
                pq.pop();
                for(auto &[to,w]:g[x]){
                    if(dist[x]+w<dist[to]){
                        dist[to]=dist[x]+w;
                        prev[to]=x;
                        pq.push({to,dist[x]+w});
                    }
                }
            }
            rep(j,14*14){
                if(people[i][j]==0) continue;
                int now=j;
                while(now!=i){
                    ret[prev[now]][now]++;
                    now=prev[now];
                }
            }
        }
        return ret;
    }
    int score(vector<vector<pii>> &g){
        int ret=0;
        rep(i,14*14){
            vector<int> dist(14*14,INF);
            vector<int> prev(14*14);
            priority_queue<pii> pq;
            dist[i]=0;
            pq.push({i,i});
            while(!pq.empty()){
                int x,d;
                tie(x,d)=pq.top();
                pq.pop();
                for(auto &[to,w]:g[x]){
                    if(dist[x]+w<dist[to]){
                        dist[to]=dist[x]+w;
                        prev[to]=x;
                        pq.push({to,dist[x]+w});
                    }
                }
            }
            rep(j,14*14){
                if(people[i][j]==0) continue;
                int now=j,cnt=0;
                while(now!=i){
                    if(dist[now]-dist[prev[now]]==223) cnt++;
                    now=prev[now];
                }
                ret+=60*cnt*people[i][j];
            }
        }
        return ret;
    }
    void solve(){
        vector<vector<pii>> g(14*14);
        rep(i,14){
            rep(j,14){
                rep(k,4){
                    int ti=i+pi[k],tj=j+pj[k];
                    if(ti<0||14<=ti||tj<0||14<=tj) continue;
                    g[to(i,j)].emplace_back(to(ti,tj),1000);
                }
            }
        }
        people.resize(14*14);
        rep(i,14*14) people[i].resize(14*14,0);
        rep(i,input.n){
            people[input.s[i]][input.g[i]]++;
        }
        vector<vector<int>> cnt=root(g);
        vector<tii> v;
        rep(i,14*14){
            rep(j,14*14){
                if(cnt[i][j]==0) continue;
                v.emplace_back(-cnt[i][j],i,j);
            }
        }
        sort(all(v));
        int x=min<int>(50,v.size());
        vector<int> score_v(x);
        rep(r,x){
            int c,i,j;
            tie(c,i,j)=v[r];
            for(auto &[to,w]:g[i]){
                if(to==j) w=223;
            }
            for(auto &[to,w]:g[j]){
                if(to==i) w=223;
            }
            score_v[r]=score(g);
        }
        vector<int> score_sum(x+1,0);
        rep(i,x) score_sum[i+1]+=score_v[i];
        vector<vector<vector<int>>> dp(input.t+1,vector<vector<int>>(input.t+1,vector<int>(x,-INF)));
        vector<vector<vector<tii>>> prev(input.t+1,vector<vector<tii>>(input.t+1,vector<tii>(x)));
        dp[0][0][0]=1e6;
        rep(i,input.t){
            rep(j,input.t+1){
                rep(k,x){
                    if(dp[i][j][k]==-INF) continue;
                    if(0<j&&k+1<x){
                        int cost=1e7/sqrt(j);
                        if(cost<=dp[i][j][k]&&dp[i+1][0][k+1]<dp[i][j][k]-cost+score_sum[k+1]){
                            dp[i+1][0][k+1]=dp[i][j][k]-cost+score_sum[k];
                            prev[i+1][0][k+1]={i,j,k};
                        }
                    }
                    if(j+1<input.t){
                        if(dp[i+1][j+1][k]<dp[i][j][k]+score_sum[k]){
                            dp[i+1][j+1][k]=dp[i][j][k]+score_sum[k];
                            prev[i+1][j+1][k]={i,j,k};
                        }
                    }
                    if(dp[i+1][j][k]<dp[i][j][k]+50000+score_sum[k]){
                        dp[i+1][j][k]=dp[i][j][k]+50000+score_sum[k];
                        prev[i+1][j][k]={i,j,k};
                    }
                }
            }
        }
        int max_score=-INF,ni=input.t,nj=-1,nk=-1;
        rep(i,input.t+1){
            rep(j,x){
                if(max_score<dp[input.t][i][j]){
                    max_score=dp[input.t][i][j];
                    nj=i;
                    nk=j;
                }
            }
        }
        vector<int> ans;
        while(ni!=0){
            int ti,tj,tk;
            tie(ti,tj,tk)=prev[ni][nj][nk];
            if(tk!=nk){
                ans.push_back(0);
            }else if(tj!=nj){
                ans.push_back(1);
            }else{
                ans.push_back(2);
            }
            ni=ti;
            nj=tj;
            nk=tk;
        }
        reverse(all(ans));
        int now=0;
        rep(i,input.t){
            int cin_u,cin_v;
            cin >> cin_u >> cin_v;
            if(ans[i]==0){
                int c,s,t;
                tie(c,s,t)=v[now];
                int o,p,q,r;
                tie(o,p)=back(s);
                tie(q,r)=back(t);
                cout << ans[i]+1 << " " << o+1 << " " << p+1 << " " << q+1 << " " << r+1 << endl;
                now++;
            }else{
                cout << ans[i]+1 << endl;
            }
        }
    }
}solver;
int main(){
    input.input_cin();
    solver.solve();
}
0