結果

問題 No.59 鉄道の旅
ユーザー SSRSSSRS
提出日時 2021-12-17 12:04:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 726 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 170,520 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-14 12:56:05
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 51 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 50 ms
5,760 KB
testcase_14 AC 59 ms
8,064 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, K;
  cin >> N >> K;
  multiset<int> st1, st2;
  for (int i = 0; i < N; i++){
    int W;
    cin >> W;
    if (W > 0){
      if (st1.size() < K){
        st1.insert(W);
      } else if (*st1.begin() < W){
        st1.insert(W);
        st2.insert(*st1.begin());
        st1.erase(st1.begin());
      }
    }
    if (W < 0){
      W = -W;
      if (st1.find(W) != st1.end()){
        st1.erase(st1.find(W));
        if (!st2.empty()){
          st1.insert(*prev(st2.end()));
          st2.erase(prev(st2.end()));
        }
      } else if (st2.find(W) != st2.end()){
        st2.erase(st2.find(W));
      }
    }
  }
  cout << st1.size() + st2.size() << endl;
}
0