結果
問題 | No.2643 Many Range Sums Problems |
ユーザー | kmjp |
提出日時 | 2024-02-27 01:11:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,959 bytes |
コンパイル時間 | 2,346 ms |
コンパイル使用メモリ | 207,088 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 11:52:21 |
合計ジャッジ時間 | 15,767 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 453 ms
5,248 KB |
testcase_08 | AC | 630 ms
6,820 KB |
testcase_09 | AC | 764 ms
6,816 KB |
testcase_10 | AC | 405 ms
6,820 KB |
testcase_11 | AC | 362 ms
6,816 KB |
testcase_12 | AC | 557 ms
6,816 KB |
testcase_13 | AC | 700 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | AC | 656 ms
6,820 KB |
testcase_16 | AC | 516 ms
6,816 KB |
testcase_17 | AC | 593 ms
6,816 KB |
testcase_18 | AC | 229 ms
6,816 KB |
testcase_19 | AC | 24 ms
6,816 KB |
testcase_20 | AC | 114 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | AC | 128 ms
6,816 KB |
testcase_23 | AC | 222 ms
6,820 KB |
testcase_24 | WA | - |
testcase_25 | AC | 390 ms
6,816 KB |
testcase_26 | AC | 36 ms
6,820 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 511 ms
6,816 KB |
testcase_31 | WA | - |
testcase_32 | AC | 545 ms
6,820 KB |
testcase_33 | AC | 548 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,K; ll R[5050],X[5050]; ll dp[5050]; vector<pair<int,ll>> E[5050]; const ll C=1LL<<60; void dfs(int cur,int pre) { FORR2(e,c,E[cur]) if(e!=pre) { dp[e]=dp[cur]+c; dfs(e,cur); } } int hoge(int v) { int i; FOR(i,N+1) E[i].clear(); FOR(i,N) { if(i==v) { E[i].push_back({R[i],C}); E[R[i]].push_back({i,-C}); } else { E[i].push_back({R[i],X[i]}); E[R[i]].push_back({i,-X[i]}); } } dp[0]=0; dfs(0,0); ll L=-1LL<<50,R=1LL<<50; FOR(i,N) { if(abs(dp[i]-dp[i+1])<=C/2) { if(dp[i+1]-dp[i]<0) return 0; if(dp[i+1]-dp[i]>K) return 0; } else if(dp[i+1]>C/2) { L=max(L,dp[i]-(dp[i+1]-C)); R=min(R,dp[i]-(dp[i+1]-C)+K); } else if(dp[i]>C/2) { L=max(L,dp[i+1]-(dp[i]-C)); R=min(R,dp[i+1]-(dp[i]-C)+K); } else if(dp[i+1]<-C/2) { L=max(L,(dp[i+1]+C)-dp[i]-K); R=min(R,(dp[i+1]+C)-dp[i]); } else if(dp[i]<-C/2) { L=max(L,(dp[i]+C)-dp[i+1]); R=min(R,(dp[i]+C)-dp[i+1]+K); } else { assert(0); } } return (L<=R); } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K; FOR(i,N) cin>>R[i]>>X[i]; FOR(i,N) { if(hoge(i)) cout<<"Yes"<<endl; else cout<<"No"<<endl; } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }