結果
問題 | No.2408 Lakes and Fish |
ユーザー | vjudge1 |
提出日時 | 2024-05-02 00:30:19 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 3,789 ms |
コンパイル使用メモリ | 272,236 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-11-22 09:13:30 |
合計ジャッジ時間 | 44,998 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 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++){ if (Dist[i]>abs(shade[j]-FishP[i])){ Dist[i]=abs(shade[j]-FishP[i]); } else if(abs(shade[j]-FishP[i])==0){ Dist[i]=abs(shade[j]-FishP[i]); break; } else{ break; } } if(Dist[i]<(Yshade[i]-Nshade[i])){ move+=Dist[i]; tot+=Yshade[i]; } else{ tot+=Nshade[i]; } } cout << tot-move; return 0; }