結果

問題 No.759 悪くない忘年会にしような!
ユーザー ミドリムシミドリムシ
提出日時 2018-12-07 18:27:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 789 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 65,532 KB
実行使用メモリ 395,264 KB
最終ジャッジ日時 2024-09-14 03:34:47
合計ジャッジ時間 44,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 580 ms
394,752 KB
testcase_01 AC 569 ms
394,624 KB
testcase_02 AC 578 ms
394,752 KB
testcase_03 AC 570 ms
394,624 KB
testcase_04 AC 579 ms
394,752 KB
testcase_05 AC 575 ms
394,752 KB
testcase_06 AC 575 ms
394,752 KB
testcase_07 AC 574 ms
394,624 KB
testcase_08 AC 591 ms
394,624 KB
testcase_09 AC 580 ms
394,752 KB
testcase_10 AC 584 ms
394,624 KB
testcase_11 AC 583 ms
394,624 KB
testcase_12 AC 576 ms
394,624 KB
testcase_13 AC 574 ms
394,752 KB
testcase_14 AC 569 ms
394,624 KB
testcase_15 AC 573 ms
394,752 KB
testcase_16 AC 571 ms
394,752 KB
testcase_17 AC 566 ms
394,624 KB
testcase_18 AC 567 ms
394,752 KB
testcase_19 AC 572 ms
394,752 KB
testcase_20 AC 567 ms
394,752 KB
testcase_21 AC 567 ms
394,752 KB
testcase_22 AC 569 ms
394,624 KB
testcase_23 AC 574 ms
394,624 KB
testcase_24 AC 576 ms
394,624 KB
testcase_25 AC 592 ms
394,624 KB
testcase_26 AC 576 ms
394,624 KB
testcase_27 AC 575 ms
394,624 KB
testcase_28 AC 581 ms
394,624 KB
testcase_29 AC 578 ms
394,624 KB
testcase_30 AC 573 ms
394,624 KB
testcase_31 AC 570 ms
394,624 KB
testcase_32 AC 572 ms
394,624 KB
testcase_33 AC 584 ms
394,624 KB
testcase_34 AC 587 ms
394,752 KB
testcase_35 AC 582 ms
394,752 KB
testcase_36 AC 586 ms
394,752 KB
testcase_37 AC 578 ms
394,624 KB
testcase_38 AC 587 ms
394,752 KB
testcase_39 AC 573 ms
394,752 KB
testcase_40 AC 580 ms
394,624 KB
testcase_41 AC 585 ms
394,752 KB
testcase_42 AC 592 ms
394,752 KB
testcase_43 AC 583 ms
394,624 KB
testcase_44 AC 690 ms
395,264 KB
testcase_45 AC 685 ms
395,136 KB
testcase_46 AC 683 ms
395,264 KB
testcase_47 AC 696 ms
395,264 KB
testcase_48 AC 690 ms
395,136 KB
testcase_49 AC 585 ms
394,624 KB
testcase_50 AC 587 ms
394,752 KB
testcase_51 AC 588 ms
394,752 KB
testcase_52 AC 586 ms
394,752 KB
testcase_53 AC 676 ms
395,136 KB
testcase_54 AC 679 ms
395,264 KB
testcase_55 AC 681 ms
395,264 KB
testcase_56 AC 680 ms
395,264 KB
testcase_57 AC 694 ms
395,264 KB
testcase_58 AC 696 ms
395,264 KB
testcase_59 AC 700 ms
395,264 KB
testcase_60 AC 681 ms
395,136 KB
testcase_61 AC 693 ms
395,136 KB
testcase_62 AC 695 ms
395,136 KB
testcase_63 AC 789 ms
395,136 KB
testcase_64 AC 788 ms
395,136 KB
testcase_65 AC 645 ms
395,136 KB
testcase_66 AC 774 ms
395,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int N;
    cin >> N;
    vector<vector<short>> space(10002, vector<short>(10002, -1));
    vector<vector<short>> space_max(10002, vector<short>(10002, -1));
    short 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_max[i][j] = max({space_max[i + 1][j], space_max[i][j + 1], space[i][j]});
        }
    }
    for(int i = 0; i < N; i++){
        if(space[P[i]][T[i]] == R[i] && max(space_max[P[i] + 1][T[i]], space_max[P[i]][T[i] + 1]) < R[i]){
            cout << i + 1 << endl;
        }
    }
}
0