結果

問題 No.2826 Earthwork
ユーザー FplusFplusFFplusFplusF
提出日時 2024-07-26 17:48:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,268 ms / 5,000 ms
コード長 4,422 bytes
コンパイル時間 3,698 ms
コンパイル使用メモリ 267,372 KB
実行使用メモリ 97,800 KB
最終ジャッジ日時 2024-07-26 17:48:33
合計ジャッジ時間 28,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 1,068 ms
97,168 KB
testcase_03 AC 89 ms
12,224 KB
testcase_04 AC 811 ms
82,644 KB
testcase_05 AC 149 ms
23,376 KB
testcase_06 AC 522 ms
53,344 KB
testcase_07 AC 662 ms
66,880 KB
testcase_08 AC 1,074 ms
97,280 KB
testcase_09 AC 1,139 ms
97,800 KB
testcase_10 AC 1,058 ms
97,292 KB
testcase_11 AC 673 ms
97,016 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 306 ms
33,124 KB
testcase_14 AC 1,212 ms
97,684 KB
testcase_15 AC 255 ms
27,076 KB
testcase_16 AC 397 ms
53,772 KB
testcase_17 AC 145 ms
17,300 KB
testcase_18 AC 371 ms
51,884 KB
testcase_19 AC 153 ms
23,300 KB
testcase_20 AC 831 ms
80,368 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 714 ms
64,856 KB
testcase_23 AC 603 ms
63,760 KB
testcase_24 AC 1,116 ms
97,220 KB
testcase_25 AC 316 ms
66,744 KB
testcase_26 AC 651 ms
65,216 KB
testcase_27 AC 8 ms
6,944 KB
testcase_28 AC 1,268 ms
97,684 KB
testcase_29 AC 58 ms
11,084 KB
testcase_30 AC 31 ms
6,940 KB
testcase_31 AC 60 ms
10,124 KB
testcase_32 AC 14 ms
6,944 KB
testcase_33 AC 618 ms
54,388 KB
testcase_34 AC 1,078 ms
97,292 KB
testcase_35 AC 218 ms
25,900 KB
testcase_36 AC 1,124 ms
97,672 KB
testcase_37 AC 1,159 ms
97,548 KB
testcase_38 AC 533 ms
50,188 KB
testcase_39 AC 33 ms
7,516 KB
testcase_40 AC 26 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
template<class T,T T_INF=numeric_limits<T>::max()> struct dijkstra{
    int n;
    vector<vector<pair<int,T>>> g;
    vector<T> dist;
    vector<int> prev_idx;
    dijkstra(int n_):n(n_),g(n),dist(n,T_INF),prev_idx(n){}
    void add_edge(int u,int v,T cost,bool undirected=false){
        assert(0<=u&&u<n);
        assert(0<=v&&v<n);
        g[u].emplace_back(v,cost);
        if(undirected) g[v].emplace_back(u,cost);
    }
    void solve(vector<int> s){
        for(int i=0;i<n;i++) dist[i]=T_INF;
        priority_queue<pair<T,int>,vector<pair<T,int>>,greater<pair<T,int>>> pq;
        for(auto i:s){
            dist[i]=0;
            pq.push({0,i});
        }
        while(!pq.empty()){
            auto [d,i]=pq.top();
            pq.pop();
            //if(d!=dist[i]) continue;
            for(auto [ti,td]:g[i]){
                if(dist[i]+td<dist[ti]){
                    dist[ti]=dist[i]+td;
                    prev_idx[ti]=i;
                    pq.push({dist[ti],ti});
                }
            }
        }
    }
    void solve(int s){
        solve((vector<int>){s});
    }
    bool path_exist(int i){
        if(dist[i]==T_INF) return false;
        return true;
    }
    T get_dist(int i){
        return dist[i];
    }
    vector<int> get_path(int i){
        if(!path_exist(i)) return {};
        vector<int> ret={i};
        while(dist[i]!=0){
            i=prev_idx[i];
            ret.push_back(i);
        }
        reverse(all(ret));
        return ret;
    }
};
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<vector<ll>> h(n,vector<ll>(n));
    rep(i,n){
        rep(j,n){
            cin >> h[i][j];
        }
    }
    vector<string> s(n);
    rep(i,n) cin >> s[i];
    vector<vector<ll>> a(n-1,vector<ll>(n)),b(n,vector<ll>(n-1));
    rep(i,n-1){
        rep(j,n){
            cin >> a[i][j];
        }
    }
    rep(i,n){
        rep(j,n-1){
            cin >> b[i][j];
        }
    }
    auto to=[&](ll i,ll j){
        return i*n+j;
    };
    vector<vector<ll>> mx(n,vector<ll>(n,-INF));
    rep(t,2){
        dijkstra<ll,(ll)4e18> g(n*n+1);
        rep(i,n-1){
            rep(j,n){
                ll p=h[i][j]+h[i+1][j];
                ll l=-p-a[i][j]*abs(p),r=-p+a[i][j]*abs(p);
                if((i+j)%2==t){
                    g.add_edge(to(i,j),to(i+1,j),-l);
                    g.add_edge(to(i+1,j),to(i,j),r);
                }else{
                    g.add_edge(to(i,j),to(i+1,j),r);
                    g.add_edge(to(i+1,j),to(i,j),-l);
                }
            }
        }
        rep(i,n){
            rep(j,n-1){
                ll p=h[i][j]+h[i][j+1];
                ll l=-p-b[i][j]*abs(p),r=-p+b[i][j]*abs(p);
                if((i+j)%2==t){
                    g.add_edge(to(i,j),to(i,j+1),-l);
                    g.add_edge(to(i,j+1),to(i,j),r);
                }else{
                    g.add_edge(to(i,j),to(i,j+1),r);
                    g.add_edge(to(i,j+1),to(i,j),-l);
                }
            }
        }
        rep(i,n){
            rep(j,n){
                if((s[i][j]=='='||s[i][j]=='-')){
                    if((i+j)%2==t) g.add_edge(n*n,to(i,j),0);
                    else g.add_edge(to(i,j),n*n,0);
                }
                if((s[i][j]=='='||s[i][j]=='+')){
                    if((i+j)%2==t) g.add_edge(to(i,j),n*n,0);
                    else g.add_edge(n*n,to(i,j),0);
                }
            }
        }
        g.solve(n*n);
        rep(i,n){
            rep(j,n){
                if((i+j)%2==t) chmax(mx[i][j],h[i][j]+g.get_dist(to(i,j)));
            }
        }
    }
    ll q;
    cin >> q;
    while(q--){
        ll r,c,e;
        cin >> r >> c >> e;
        r--;
        c--;
        if(e<=mx[r][c]) cout << "Yes\n";
        else cout << "No\n";
    }
}
0