結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
394,368 KB
testcase_01 AC 558 ms
394,240 KB
testcase_02 AC 553 ms
394,368 KB
testcase_03 AC 555 ms
394,240 KB
testcase_04 WA -
testcase_05 AC 566 ms
394,368 KB
testcase_06 WA -
testcase_07 AC 559 ms
394,368 KB
testcase_08 AC 561 ms
394,240 KB
testcase_09 AC 560 ms
394,368 KB
testcase_10 AC 564 ms
394,368 KB
testcase_11 AC 561 ms
394,368 KB
testcase_12 AC 563 ms
394,368 KB
testcase_13 AC 558 ms
394,240 KB
testcase_14 WA -
testcase_15 AC 568 ms
394,240 KB
testcase_16 AC 562 ms
394,240 KB
testcase_17 AC 564 ms
394,368 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 564 ms
394,240 KB
testcase_21 WA -
testcase_22 AC 569 ms
394,368 KB
testcase_23 AC 562 ms
394,368 KB
testcase_24 AC 565 ms
394,368 KB
testcase_25 WA -
testcase_26 AC 560 ms
394,240 KB
testcase_27 AC 563 ms
394,240 KB
testcase_28 AC 567 ms
394,240 KB
testcase_29 AC 566 ms
394,240 KB
testcase_30 WA -
testcase_31 AC 572 ms
394,368 KB
testcase_32 AC 575 ms
394,368 KB
testcase_33 AC 585 ms
394,496 KB
testcase_34 AC 576 ms
394,368 KB
testcase_35 AC 570 ms
394,368 KB
testcase_36 WA -
testcase_37 AC 575 ms
394,368 KB
testcase_38 WA -
testcase_39 AC 570 ms
394,368 KB
testcase_40 WA -
testcase_41 AC 572 ms
394,240 KB
testcase_42 AC 574 ms
394,368 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 578 ms
394,368 KB
testcase_50 WA -
testcase_51 AC 576 ms
394,368 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]] = max(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(space[P[i]][T[i]] <= R[i]){
            cout << i + 1 << endl;
        }
    }
}
0