結果
問題 | No.2408 Lakes and Fish |
ユーザー | vjudge1 |
提出日時 | 2024-05-04 23:46:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,227 bytes |
コンパイル時間 | 1,931 ms |
コンパイル使用メモリ | 205,152 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-05-04 23:46:32 |
合計ジャッジ時間 | 7,203 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 125 ms
8,064 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
コンパイルメッセージ
main.cpp:7:18: warning: overflow in conversion from 'double' to 'long long int' changes value from '1.0e+19' to '9223372036854775807' [-Woverflow] 7 | const ll INF=1e19+5; | ~~~~^~
ソースコード
#include <bits/stdc++.h> #define ll long long #define endl '\n' using namespace std; const ll N=2e5+5; const ll INF=1e19+5; void solve(){ ll n,m; cin>>n>>m; ll arr[N]; ll tree[n]; memset(arr,0,sizeof(arr)); for(int i=0;i<n;i++){ cin>>tree[i]; arr[tree[i]]=1; } vector<pair<ll,pair<ll,ll>>>v(n); for(int i=0;i<n;i++){ cin>>v[i].first>>v[i].second.first>>v[i].second.second; } ll sum=0; for(int i=0;i<n;i++){ if(arr[v[i].first]==1){ sum+=v[i].second.second; // cout<<v[i].second.second; } else{ ll l,r; l=lower_bound(tree,tree+n,v[i].first)-tree; r=upper_bound(tree,tree+n,v[i].first)-tree-1; ll dist=min(abs(v[i].first-tree[l]),abs(v[i].first-tree[r])); if(dist<v[i].second.second-v[i].second.first){ sum+=v[i].second.second-dist; // cout<<v[i].second.second-dist<<endl; } else{ sum+=v[i].second.first; // cout<<v[i].second.first<<endl; } } } cout<<sum<<endl; } int main(){ ll tc; tc=1; while(tc--){ solve(); } }