結果
| 問題 |
No.904 サメトロ
|
| コンテスト | |
| ユーザー |
tubo28
|
| 提出日時 | 2019-10-11 22:06:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 668 bytes |
| コンパイル時間 | 1,513 ms |
| コンパイル使用メモリ | 166,612 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-25 07:33:47 |
| 合計ジャッジ時間 | 2,188 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 28 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int maxInDeg = 0;
int inQueue = 0; // ->
int outQueue = 0; // <-
for (int i = 0; i < n-1; ++i){
int in, out;
cin >> in >> out;
maxInDeg += out;
int deltaInQueue = min(inQueue, out);
int deltaOutQueue = min(outQueue, in);
inQueue -= deltaInQueue;
outQueue -= deltaOutQueue;
inQueue += out - deltaInQueue;
outQueue += in - deltaOutQueue;
}
int ans = maxInDeg - abs(inQueue - outQueue) + 1;
// cout << maxInDeg << ' ' << inQueue << ' ' << outQueue << endl;
cout << ans << endl;
}
tubo28