結果
問題 | No.1597 Matrix Sort |
ユーザー | parentheses |
提出日時 | 2021-07-10 00:05:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 355 ms / 1,500 ms |
コード長 | 3,600 bytes |
コンパイル時間 | 2,327 ms |
コンパイル使用メモリ | 207,788 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 18:57:19 |
合計ジャッジ時間 | 8,946 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 334 ms
5,376 KB |
testcase_04 | AC | 350 ms
5,376 KB |
testcase_05 | AC | 355 ms
5,376 KB |
testcase_06 | AC | 346 ms
5,376 KB |
testcase_07 | AC | 355 ms
5,376 KB |
testcase_08 | AC | 271 ms
5,376 KB |
testcase_09 | AC | 282 ms
5,376 KB |
testcase_10 | AC | 200 ms
5,376 KB |
testcase_11 | AC | 158 ms
5,376 KB |
testcase_12 | AC | 147 ms
5,376 KB |
testcase_13 | AC | 269 ms
5,376 KB |
testcase_14 | AC | 306 ms
5,376 KB |
testcase_15 | AC | 115 ms
5,376 KB |
testcase_16 | AC | 177 ms
5,376 KB |
testcase_17 | AC | 207 ms
5,376 KB |
testcase_18 | AC | 331 ms
5,376 KB |
testcase_19 | AC | 238 ms
5,376 KB |
testcase_20 | AC | 199 ms
5,376 KB |
testcase_21 | AC | 192 ms
5,376 KB |
testcase_22 | AC | 193 ms
5,376 KB |
testcase_23 | AC | 196 ms
5,376 KB |
testcase_24 | AC | 27 ms
5,376 KB |
testcase_25 | AC | 25 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; // -------------------------------------------------------- template<class T> bool chmax(T& a, const T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> bool chmin(T& a, const T b) { if (b < a) { a = b; return 1; } return 0; } #define FOR(i,l,r) for (ll i = (l); i < (r); ++i) #define RFOR(i,l,r) for (ll i = (r)-1; (l) <= i; --i) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) RFOR(i,0,n) #define ALL(c) (c).begin(), (c).end() #define RALL(c) (c).rbegin(), (c).rend() #define SORT(c) sort(ALL(c)) #define RSORT(c) sort(RALL(c)) #define MIN(c) *min_element(ALL(c)) #define MAX(c) *max_element(ALL(c)) #define SUMLL(c) accumulate(ALL(c), 0LL) #define COUNT(c,v) count(ALL(c),(v)) #define SZ(c) ((ll)(c).size()) #define BIT(b,i) (((b)>>(i)) & 1) #define PCNT(b) __builtin_popcountll(b) #define CIN(c) cin >> (c) #define COUT(c) cout << (c) << '\n' #define debug(x) cerr << "l." << __LINE__ << " : " << #x << " = " << (x) << '\n' ll llceil(ll a, ll b) { return (a + b - 1) / b; } ll bitlen(ll b) { if (b <= 0) { return 0; } return (64LL - __builtin_clzll(b)); } string toupper(const string& S) { string T(S); REP(i,SZ(T)) T[i] = toupper(T[i]); return T; } string tolower(const string& S) { string T(S); REP(i,SZ(T)) T[i] = tolower(T[i]); return T; } template<class T> void cout_line(const vector<T>& ans, ll l, ll r) { for (ll i = l; i < r; i++) { if (i != l) { cout << " "; } cout << ans[i]; } cout << '\n'; } template<class T> void debug_line(const vector<T>& ans, ll l, ll r, ll L = 0) { cerr << "l." << L << " :"; for (ll i = l; i < r; i++) { cerr << " " << ans[i]; } cerr << '\n'; } using P = pair<ll,ll>; using VP = vector<P>; using VVP = vector<VP>; using VS = vector<string>; using VVS = vector<VS>; using VLL = vector<ll>; using VVLL = vector<VLL>; using VVVLL = vector<VVLL>; using VB = vector<bool>; using VVB = vector<VB>; using VVVB = vector<VVB>; using VD = vector<double>; using VVD = vector<VD>; using VVVD = vector<VVD>; using VLD = vector<ld>; using VVLD = vector<VLD>; using VVVLD = vector<VVLD>; static const double EPS = 1e-10; static const double PI = acos(-1.0); static const ll MOD = 1000000007; // static const ll MOD = 998244353; static const ll INF = (1LL << 62) - 1; // 4611686018427387904 - 1 // -------------------------------------------------------- // #include <atcoder/all> // using namespace atcoder; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); ll N, K, P; cin >> N >> K >> P; VLL A(N); REP(i,N) { cin >> A[i]; A[i] %= P; } VLL B(N); REP(i,N) { cin >> B[i]; B[i] %= P; } SORT(A); SORT(B); ll v = P - 1; ll ok = P - 1; ll ng = -1; while (ok - ng > 1) { ll m = (ok + ng) / 2; bool is_ok = [&]() -> bool { // v 以下の数を数える ll sum = 0; for (ll b : B) { // [0, v] { auto it1 = lower_bound(ALL(A), 0 - b); auto it2 = upper_bound(ALL(A), m - b); sum += it2 - it1; } // [P, P+v] { auto it1 = lower_bound(ALL(A), P+0 - b); auto it2 = upper_bound(ALL(A), P+m - b); sum += it2 - it1; } } bool ok = (K <= sum); if (ok) v = m; return ok; }(); (is_ok ? ok : ng) = m; } ll ans = v; COUT(ans); return 0; }