結果
問題 | No.738 平らな農地 |
ユーザー | azbrugby |
提出日時 | 2019-02-23 18:21:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,892 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 78,812 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-05-08 00:34:52 |
合計ジャッジ時間 | 7,561 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | AC | 34 ms
5,376 KB |
testcase_66 | AC | 35 ms
5,376 KB |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | WA | - |
testcase_71 | AC | 34 ms
5,376 KB |
testcase_72 | AC | 64 ms
5,376 KB |
testcase_73 | AC | 65 ms
5,760 KB |
testcase_74 | AC | 61 ms
5,376 KB |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | WA | - |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | WA | - |
testcase_81 | WA | - |
testcase_82 | WA | - |
testcase_83 | AC | 58 ms
5,376 KB |
testcase_84 | AC | 53 ms
5,376 KB |
testcase_85 | AC | 47 ms
5,376 KB |
testcase_86 | WA | - |
testcase_87 | WA | - |
testcase_88 | WA | - |
testcase_89 | AC | 2 ms
5,376 KB |
testcase_90 | AC | 1 ms
5,376 KB |
testcase_91 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <cstring> #include <sstream> #include <map> #include <queue> #include <set> #include <vector> #include <stack> #include <cstdio> #include <cmath> #define mk make_pair #define pb push_back #define printf printf_s #define scanf scanf_s using namespace std; typedef long long int ll; typedef pair<ll, ll> pos; const ll MOD = 1000000007, N = 200010, dx[4] = { -1,1,0,0 }, dy[4] = { 0,0,-1,1 }, MIN = -72340172838076673, MAX = 72340172838076673; ll mn(ll a, ll b) { if (a == -1)return b; if (b == -1)return a; return min(a, b); } ll gcd(ll v1, ll v2) { if (v1 == 0)return v2; if (v2 == 0)return v1; if (v2 > v1)return gcd(v2%v1, v1); return gcd(v1%v2, v2); } ll pw(ll v1, ll v2) { ll v3 = 1; while (v2 > 0) { if (v2 % 2)v3 = (v3*v1) % MOD; v1 = (v1*v1) % MOD; v2 /= 2; } return v3; } struct ab { ll a, b; bool operator<(const ab& right) const { return right.b*a - right.a*b < 0; } }; ll n, k,a[N],sv1=0,sv2=0; multiset<ll> st1, st2; void ev() { while (st1.size() < st2.size()) { ll v1 = *st1.begin(); sv1 -= v1; st2.insert(-v1); sv2 += -v1; st1.erase(st1.begin()); } while(!st2.empty()&&-*st1.begin()>*st2.begin()) { ll v1 = *st1.begin(),v2=*st2.begin(); sv1 += -v1 - v2; sv2 += -v1 - v2; st1.erase(st1.begin()); st2.erase(st2.begin()); st1.insert(-v2); st2.insert(-v1); } } void ad(ll v1) { st1.insert(-v1); sv1 += -v1; ev(); } void dl(ll v1) { if (!st2.empty()&&*st2.begin() <= v1) { sv2 -= v1; st2.erase(st2.find(v1)); } else { sv1 += v1; st1.erase(st1.find(-v1)); } ev(); } ll ans = -1; int main() { cin >> n >> k; for (int i = 1; i <= n; i++) { cin >> a[i]; ad(a[i]); if (i > k) { dl(a[i - k]); } if (i >= k) { ll v1 = -*st1.begin()*st1.size() + sv1; v1 += sv2 - (-*st1.begin()*st2.size()); ans = mn(ans, v1); } } cout << ans << endl; return 0; }