結果
問題 | No.59 鉄道の旅 |
ユーザー | Twizz |
提出日時 | 2017-05-26 22:37:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 768 bytes |
コンパイル時間 | 1,210 ms |
コンパイル使用メモリ | 160,352 KB |
実行使用メモリ | 7,432 KB |
最終ジャッジ日時 | 2024-09-19 20:12:51 |
合計ジャッジ時間 | 1,951 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,252 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 5 ms
7,296 KB |
testcase_12 | AC | 19 ms
7,204 KB |
testcase_13 | WA | - |
testcase_14 | AC | 36 ms
7,212 KB |
testcase_15 | WA | - |
ソースコード
#include"bits/stdc++.h" //#include<bits/stdc++.h> using namespace std; #define print(x) cout<<x<<endl; #define rep(i,a,b) for(int i=a;i<b;i++) #define REP(i,a) for(int i=0;i<a;i++) typedef long long ll; typedef pair<int, int> PI; typedef pair<int, PI> V; typedef vector<int> VE; const ll mod = 100000000; int n, k; int bit[1000002]; int sum(int i) { int s = 0; while (i > 0) { s += bit[i]; i -= i&-i; } return s; } void add(int i, int x) { while (i <= 1000002) { bit[i] += x; i += i&-i; } } int main() { cin >> n >> k; REP(i, 1000002)bit[i] = 0; REP(i, n) { int w; cin >> w; if (w > 0) { if (sum(1000002) - sum(w - 1) < k) {add(w, 1);} }else { if (sum(-w) - sum(-w - 1) >= 1) {add(-w, -1);} } } print(sum(1000002)); return 0; }