結果

問題 No.614 壊れたキャンパス
ユーザー jiang0503jiang0503
提出日時 2018-03-22 15:42:00
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,417 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 67,444 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-24 20:08:05
合計ジャッジ時間 5,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 2 ms
5,376 KB
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 AC 2 ms
5,376 KB
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 131 ms
5,376 KB
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>

using namespace std;



int main() {

    unsigned int tmpA;
    unsigned long tmpB, tmpC;
    unsigned int n;
    unsigned int m;
    unsigned long k;
    unsigned long start, terminate;
    map<unsigned int, unsigned long> maxCorridor;
    unsigned long sumCorridor=0;

    cin>>n>>m>>k>>start>>terminate;
    if(start<terminate) {

        for (int i = 0; i < m; i++) {
            cin >> tmpA >> tmpB >> tmpC;
            if (maxCorridor.count(tmpA) == 0 || maxCorridor[tmpA] < tmpC - tmpB)
                maxCorridor[tmpA] = tmpC - tmpB;
        }

        for (unsigned int i = 1; i < n; ++i) {
            if (maxCorridor.count(i) == 0) {
                cout << "-1" << endl;
                return 1;
            }
            sumCorridor += maxCorridor[i];
        }

        cout << terminate - start - sumCorridor << endl;
    }
    else
    {
        for (int i = 0; i < m; i++) {
            cin >> tmpA >> tmpB >> tmpC;
            if (maxCorridor.count(tmpA) == 0 || maxCorridor[tmpA] < tmpB - tmpC)
                maxCorridor[tmpA] = tmpB - tmpC;
        }

        for (unsigned int i = 1; i < n; ++i) {
            if (maxCorridor.count(i) == 1) {
                cout << "-1" << endl;
                return 1;
            }
            sumCorridor += maxCorridor[i];
        }

        cout << start - terminate - sumCorridor << endl;
    }


    return 0;
}
0