結果
問題 | No.2408 Lakes and Fish |
ユーザー | vjudge1 |
提出日時 | 2024-05-01 23:50:04 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 3,358 ms |
コンパイル使用メモリ | 272,700 KB |
実行使用メモリ | 15,488 KB |
最終ジャッジ日時 | 2024-11-22 08:10:50 |
合計ジャッジ時間 | 45,596 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
10,112 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
10,240 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long int main(){ int n, m; cin >>n >>m; int shade[n]; int FishP[m]; int Nshade[m]; int Yshade[m]; int Dist[m]; int tot=0; int move=0; for(int i=0; i<n;i++){ cin >> shade[i]; } for(int i=0; i<m;i++){ cin >> FishP[i] >> Nshade[i] >> Yshade[i]; } for(int i=0; i<m; i++){ Dist[i]=1e9+1; for(int j=0;j<n;j++){ Dist[i]=min(Dist[i], abs(shade[j]-FishP[i])); } if(Dist[i]<=(Yshade[i]-Nshade[i])){ move+=Dist[i]; tot+=Yshade[i]; } else{ tot+=Nshade[i]; } } cout << tot-move; return 0; }