結果

問題 No.759 悪くない忘年会にしような!
ユーザー ミドリムシミドリムシ
提出日時 2018-12-07 18:04:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 64,648 KB
実行使用メモリ 395,648 KB
最終ジャッジ日時 2024-09-14 03:30:23
合計ジャッジ時間 44,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
394,368 KB
testcase_01 AC 570 ms
394,368 KB
testcase_02 AC 572 ms
394,368 KB
testcase_03 AC 579 ms
394,368 KB
testcase_04 WA -
testcase_05 AC 576 ms
394,368 KB
testcase_06 WA -
testcase_07 AC 570 ms
394,240 KB
testcase_08 AC 577 ms
394,496 KB
testcase_09 AC 573 ms
394,368 KB
testcase_10 AC 572 ms
394,240 KB
testcase_11 AC 575 ms
394,368 KB
testcase_12 AC 572 ms
394,240 KB
testcase_13 AC 568 ms
394,368 KB
testcase_14 WA -
testcase_15 AC 578 ms
394,496 KB
testcase_16 AC 574 ms
394,240 KB
testcase_17 AC 575 ms
394,240 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 577 ms
394,240 KB
testcase_21 WA -
testcase_22 AC 576 ms
394,240 KB
testcase_23 AC 571 ms
394,368 KB
testcase_24 AC 575 ms
394,240 KB
testcase_25 WA -
testcase_26 AC 572 ms
394,240 KB
testcase_27 AC 575 ms
394,368 KB
testcase_28 AC 575 ms
394,368 KB
testcase_29 AC 572 ms
394,240 KB
testcase_30 WA -
testcase_31 AC 572 ms
394,240 KB
testcase_32 AC 576 ms
394,240 KB
testcase_33 AC 588 ms
394,496 KB
testcase_34 AC 579 ms
394,368 KB
testcase_35 AC 582 ms
394,240 KB
testcase_36 WA -
testcase_37 AC 584 ms
394,240 KB
testcase_38 WA -
testcase_39 AC 570 ms
394,240 KB
testcase_40 WA -
testcase_41 AC 583 ms
394,368 KB
testcase_42 AC 585 ms
394,496 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 597 ms
394,496 KB
testcase_50 WA -
testcase_51 AC 587 ms
394,496 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int main(){
    int N;
    cin >> N;
    vector<vector<int>> space(10002, vector<int>(10002, -1));
    int P[N], T[N], R[N];
    for(int i = 0; i < N; i++){
        cin >> P[i] >> T[i] >> R[i];
        space[P[i]][T[i]] = R[i];
    }
    for(int i = 10000; i >= 0; i--){
        for(int j = 10000; j >= 0; j--){
            space[i][j] = max({space[i + 1][j], space[i][j + 1], space[i][j]});
        }
    }
    for(int i = 0; i < N; i++){
        if(max(space[P[i] + 1][T[i]], space[P[i]][T[i] + 1]) <= R[i]){
            cout << i + 1 << endl;
        }
    }
}
0