結果
問題 | No.909 たぴの配置 |
ユーザー | nayuta |
提出日時 | 2019-10-18 22:02:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 354 ms / 3,000 ms |
コード長 | 778 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 179,988 KB |
実行使用メモリ | 12,492 KB |
最終ジャッジ日時 | 2024-06-25 16:59:18 |
合計ジャッジ時間 | 7,505 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 354 ms
11,112 KB |
testcase_06 | AC | 349 ms
12,444 KB |
testcase_07 | AC | 317 ms
12,076 KB |
testcase_08 | AC | 339 ms
12,492 KB |
testcase_09 | AC | 348 ms
11,988 KB |
testcase_10 | AC | 329 ms
11,252 KB |
testcase_11 | AC | 324 ms
11,420 KB |
testcase_12 | AC | 330 ms
12,144 KB |
testcase_13 | AC | 335 ms
11,784 KB |
testcase_14 | AC | 333 ms
11,288 KB |
testcase_15 | AC | 327 ms
10,672 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int N; long long int X[201010], Y[201010]; vector<tuple<int, int, int, int>> tp; long long int ans = 1e18, p[201010]; int main() { cin >> N; for (int i = 0; i < N; i++) { cin >> X[i]; } for (int i = 0; i < N; i++) { cin >> Y[i]; } for (int i = 0; i < N; i++) { tp.emplace_back(X[i] + Y[i], X[i], Y[i], i); } sort(tp.begin(), tp.end()); long long int sum, x, y, id; for (int i = 0; i < N; i++) { tie(sum, x, y, id) = tp[i]; if (sum < ans) { ans = sum; } if (x >= ans) { p[id] = ans; } else { p[id] = x; } } cout << ans << endl; cout << 0 << endl; for (int i = 0; i < N; i++) { cout << p[i] << endl; } cout << ans << endl; return 0; }