結果
問題 | No.3016 ハチマキおじさん |
ユーザー |
|
提出日時 | 2025-03-18 06:25:27 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,417 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 80,832 KB |
実行使用メモリ | 14,776 KB |
最終ジャッジ日時 | 2025-03-18 06:25:34 |
合計ジャッジ時間 | 7,653 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 TLE * 1 -- * 21 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <climits>using namespace std;int calculate_min_sadness(vector<int>& A, vector<int>& B, int skip_index) {int n = A.size();vector<int> temp_A;for (int i = 0; i < n; i++) {if (i != skip_index) temp_A.push_back(A[i]);}int total_sadness = 0;for (int i = 0; i < n - 1; i++) {total_sadness += abs(temp_A[i] - B[i]);}return total_sadness;}int main() {int n;cin >> n;vector<int> A(n), B(n - 1);for (int i = 0; i < n; i++) cin >> A[i];for (int i = 0; i < n - 1; i++) cin >> B[i];sort(A.begin(), A.end());sort(B.begin(), B.end());int min_sadness = INT_MAX;vector<int> possible_lengths;for (int i = 0; i < n; i++) {int sadness = calculate_min_sadness(A, B, i);if (sadness < min_sadness) {min_sadness = sadness;possible_lengths.clear();possible_lengths.push_back(A[i]);} else if (sadness == min_sadness) {possible_lengths.push_back(A[i]);}}sort( possible_lengths.begin(), possible_lengths.end() );possible_lengths.erase( unique( possible_lengths.begin(), possible_lengths.end() ), possible_lengths.end() );cout << possible_lengths.size() << endl;for (int x : possible_lengths) cout << x << " ";cout << endl;return 0;}