結果
問題 | No.1597 Matrix Sort |
ユーザー | hayaten |
提出日時 | 2021-07-09 23:52:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,712 bytes |
コンパイル時間 | 4,964 ms |
コンパイル使用メモリ | 278,236 KB |
実行使用メモリ | 317,440 KB |
最終ジャッジ日時 | 2024-07-01 18:48:44 |
合計ジャッジ時間 | 13,114 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | AC | 391 ms
317,312 KB |
testcase_05 | AC | 430 ms
317,312 KB |
testcase_06 | AC | 393 ms
317,264 KB |
testcase_07 | AC | 403 ms
317,312 KB |
testcase_08 | AC | 361 ms
317,312 KB |
testcase_09 | AC | 367 ms
317,312 KB |
testcase_10 | AC | 284 ms
317,440 KB |
testcase_11 | AC | 297 ms
317,312 KB |
testcase_12 | AC | 57 ms
5,376 KB |
testcase_13 | AC | 112 ms
36,224 KB |
testcase_14 | AC | 395 ms
317,312 KB |
testcase_15 | AC | 55 ms
5,376 KB |
testcase_16 | AC | 90 ms
36,084 KB |
testcase_17 | AC | 315 ms
317,312 KB |
testcase_18 | AC | 377 ms
317,440 KB |
testcase_19 | AC | 363 ms
317,312 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 293 ms
317,400 KB |
testcase_23 | WA | - |
testcase_24 | AC | 34 ms
5,376 KB |
testcase_25 | AC | 32 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 218 ms
315,728 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include <bits/stdc++.h> #include <atcoder/all> #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n - 1); i >= 0; i--) #define ALL(v) v.begin(), v.end() #define endl "\n" #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) #define pb push_back #define eb emplace_back using namespace std; using namespace atcoder; using P = pair<int, int>; using PL = pair<long long, long long>; typedef long long ll; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; int main() { int n, p; ll k; cin >> n >> k >> p; vector<ll> A(n), B(n); vector<ll> cn_amari(2 * p); rep(i, n) cin >> A[i]; rep(i, n){ cin >> B[i]; cn_amari[B[i]]++; } rep(i, p){ cn_amari[p + i] = cn_amari[i]; } vector<ll> cn_amari_sum(2 * p + 1); rep(i, 2* p){ cn_amari_sum[i + 1] = cn_amari_sum[i] + cn_amari[i]; } auto ok = [&](int d){ ll cn = 0; rep(i, n){ int start = p - A[i]; start %= p; int end = p + d - A[i]; end++; //if(end < start)end += p; cn += (cn_amari_sum[end] - cn_amari_sum[start]); } return cn >= k; }; int left = 0, right = p; while(right - left > 1){ int mid = (left + right) / 2; if(ok(mid)){ right = mid; }else{ left = mid; } } cout << right << endl; }