結果

問題 No.909 たぴの配置
ユーザー skentagonskentagon
提出日時 2019-10-18 22:00:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 622 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 177,424 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-06-25 16:01:36
合計ジャッジ時間 10,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 449 ms
14,508 KB
testcase_06 AC 483 ms
14,976 KB
testcase_07 AC 433 ms
13,980 KB
testcase_08 AC 460 ms
14,592 KB
testcase_09 AC 468 ms
14,976 KB
testcase_10 AC 423 ms
13,952 KB
testcase_11 AC 421 ms
13,824 KB
testcase_12 AC 432 ms
14,464 KB
testcase_13 AC 502 ms
14,976 KB
testcase_14 AC 394 ms
13,940 KB
testcase_15 AC 462 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for( int i=0; i<n; ++i )
typedef long long ll;
using namespace std;

int main(){
  int n;
  cin >> n;
  vector<vector<int>> d(n,vector<int>(3));
  vector<int> res(n);
  rep(i,n){ cin >> d[i][0]; }
  rep(i,n){ cin >> d[i][1]; }
  rep(i,n){ d[i][2] = i; }
  sort( d.begin(), d.end(), [](const vector<int>& l, const vector<int>& r){
    return l[0]+l[1] < r[0]+r[1];
  });
  auto ml = (*(d.begin()))[0] + (*(d.begin()))[1];
  cout << ml << endl;
  puts("0");
  rep(i,n){
    res[d[i][2]] = min( d[i][0], ml );
  }
  rep(i,n){
    cout << res[i] << endl;
  }
  cout << ml << endl;
}
0