結果
問題 | No.2408 Lakes and Fish |
ユーザー | HIcoder |
提出日時 | 2024-08-24 00:11:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 170 ms / 2,000 ms |
コード長 | 1,079 bytes |
コンパイル時間 | 1,488 ms |
コンパイル使用メモリ | 123,028 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-08-24 00:11:53 |
合計ジャッジ時間 | 5,298 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 158 ms
7,168 KB |
testcase_05 | AC | 152 ms
7,168 KB |
testcase_06 | AC | 148 ms
7,168 KB |
testcase_07 | AC | 164 ms
7,168 KB |
testcase_08 | AC | 170 ms
7,168 KB |
testcase_09 | AC | 163 ms
7,168 KB |
testcase_10 | AC | 169 ms
7,296 KB |
testcase_11 | AC | 92 ms
6,940 KB |
testcase_12 | AC | 120 ms
6,944 KB |
testcase_13 | AC | 34 ms
6,944 KB |
testcase_14 | AC | 66 ms
6,944 KB |
testcase_15 | AC | 135 ms
6,944 KB |
testcase_16 | AC | 48 ms
6,940 KB |
testcase_17 | AC | 38 ms
6,944 KB |
testcase_18 | AC | 80 ms
6,944 KB |
testcase_19 | AC | 126 ms
6,944 KB |
testcase_20 | AC | 122 ms
6,944 KB |
testcase_21 | AC | 129 ms
6,944 KB |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<int,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ int N,M; cin>>N>>M; vector<ll> L(N); for(int i=0;i<N;i++) cin>>L[i]; sort(L.begin(),L.end()); vector<ll> F(M),B(M),W(M); vector<ll> d(M); ll cost=0; for(int i=0;i<M;i++){ cin>>F[i]>>B[i]>>W[i]; cost+=B[i]; d[i]=W[i]-B[i];//水中だと+d[i]の強さ } for(int i=0;i<M;i++){ auto it=upper_bound(L.begin(),L.end(),F[i]); ll dist=INF; if(it!=L.end()){ dist=min(dist,*it-F[i]); } if(it!=L.begin()){ it--; dist=min(dist,F[i]-*it); } if(d[i]-dist>=0){ cost+=d[i]-dist; } } cout<<cost<<endl; }