結果
問題 | No.1864 Shortest Paths Counting |
ユーザー | pockyny |
提出日時 | 2022-03-04 23:27:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 330 ms / 2,000 ms |
コード長 | 2,328 bytes |
コンパイル時間 | 1,058 ms |
コンパイル使用メモリ | 94,188 KB |
実行使用メモリ | 14,904 KB |
最終ジャッジ日時 | 2024-07-18 21:57:50 |
合計ジャッジ時間 | 6,391 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 205 ms
14,120 KB |
testcase_10 | AC | 220 ms
14,516 KB |
testcase_11 | AC | 224 ms
14,136 KB |
testcase_12 | AC | 287 ms
14,176 KB |
testcase_13 | AC | 231 ms
14,904 KB |
testcase_14 | AC | 245 ms
14,176 KB |
testcase_15 | AC | 216 ms
14,160 KB |
testcase_16 | AC | 224 ms
14,260 KB |
testcase_17 | AC | 219 ms
14,264 KB |
testcase_18 | AC | 242 ms
14,224 KB |
testcase_19 | AC | 256 ms
14,348 KB |
testcase_20 | AC | 330 ms
14,216 KB |
testcase_21 | AC | 272 ms
14,220 KB |
testcase_22 | AC | 217 ms
14,264 KB |
testcase_23 | AC | 199 ms
14,276 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 238 ms
14,892 KB |
testcase_26 | AC | 115 ms
14,188 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> using namespace std; typedef long long ll; ll INF = 1000000000000000; ll mod = 998244353; struct segment_tree{ int n; vector<ll> seg; segment_tree(){} segment_tree(int sz){n = sz; seg.resize(2*n);} segment_tree(vector<ll> v){ n = v.size(); seg.resize(2*n); for(int i=0;i<n;i++) seg[i + n] = v[i]; for(int i=n - 1;i>0;i--) seg[i] = (seg[i<<1] + seg[i<<1|1])%mod; } void init(int sz){n = sz; seg.resize(2*n);} void update(int p,ll val){ for((seg[p += n] += val) %= mod;p>1;p>>=1) seg[p>>1] = (seg[p] + seg[p^1])%mod; } ll query(int l,int r){ ll res = 0; for(l += n,r += n; l<r;l>>=1,r>>=1){ if(l&1) res = (res + seg[l++])%mod; if(r&1) res = (res + seg[--r])%mod; } return res; } void clear(){for(int i=0;i<2*n;i++) seg[i] = 0;} }; ll x[200010],y[200010]; int main(){ int i,n; cin >> n; vector<pair<ll,ll>> v; for(i=0;i<n;i++){ cin >> x[i] >> y[i]; v.push_back({x[i] + y[i],x[i] - y[i]}); } ll sx = x[0] + y[0],sy = x[0] - y[0]; ll gx = x[n - 1] + y[n - 1],gy = x[n - 1] - y[n - 1]; for(i=0;i<n;i++){ if(sx>gx) v[i].first *= -1; if(sy>gy) v[i].second *= -1; } if(sx>gx) sx *= -1, gx *= -1; if(sy>gy) sy *= -1, gy *= -1; sort(v.begin(),v.end()); /*for(auto p:v){ cout << p.first << " " << p.second << endl; }*/ //cout << sx << " " << sy << " " << gx << " " << gy << endl; vector<ll> z(n); for(i=0;i<n;i++) z[i] = v[i].second; sort(z.begin(),z.end()); segment_tree seg(n); bool f = false; ll ans = 0; for(i=0;i<n;i++){ if(v[i].first==sx && v[i].second==sy) f = true; if(!f) continue; int j = lower_bound(z.begin(),z.end(),v[i].second) - z.begin(); ll num = seg.query(0,j + 1); if(v[i].first==sx && v[i].second==sy) num++; if(v[i].first==gx && v[i].second==gy){ ans = num; f = false; } seg.update(j,num); } int j = lower_bound(z.begin(),z.end(),gy) - z.begin(); /*cout << seg.query(j,j + 1) << endl; for(i=0;i<n;i++) cout << seg.query(i,i + 1) << " "; cout << endl;*/ cout << ans << endl; }