結果

問題 No.1623 三角形の制作
ユーザー msm1993msm1993
提出日時 2021-07-28 10:59:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 674 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 172,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 04:52:08
合計ジャッジ時間 12,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
6,816 KB
testcase_01 AC 48 ms
6,940 KB
testcase_02 AC 590 ms
6,940 KB
testcase_03 AC 583 ms
6,940 KB
testcase_04 AC 583 ms
6,940 KB
testcase_05 AC 674 ms
6,944 KB
testcase_06 AC 455 ms
6,944 KB
testcase_07 AC 580 ms
6,944 KB
testcase_08 AC 457 ms
6,940 KB
testcase_09 AC 561 ms
6,944 KB
testcase_10 AC 636 ms
6,944 KB
testcase_11 AC 604 ms
6,944 KB
testcase_12 AC 231 ms
6,944 KB
testcase_13 AC 233 ms
6,944 KB
testcase_14 AC 232 ms
6,940 KB
testcase_15 AC 326 ms
6,940 KB
testcase_16 AC 324 ms
6,940 KB
testcase_17 AC 339 ms
6,944 KB
testcase_18 AC 345 ms
6,944 KB
testcase_19 AC 253 ms
6,940 KB
testcase_20 AC 47 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 3001;
int main(){
  int n;
  cin >> n;
  vector<int> r(n);
  for (int i = 0; i < n; i++){
    cin >> r[i];
  }
  vector<int> g(n);
  for (int i = 0; i < n; i++){
    cin >> g[i];
  }
  vector<int> b(n);
  for (int i = 0; i < n; i++){
    cin >> b[i];
  }
  vector<int> rc(MAX, 0);
  for (int i = 0; i < n; i++){
    rc[r[i]]++;
  }
  vector<int> gc(MAX, 0);
  for (int i = 0; i < n; i++){
    gc[g[i]]++;
  }
  sort(b.begin(), b.end());
  long long ans = 0;
  for (int i = 0; i < MAX; i++){
    for (int j = 0; j <= i; j++){
      int l = upper_bound(b.begin(), b.end(), i - j) - b.begin();;
      int r = upper_bound(b.begin(), b.end(), i) - b.begin();
      ans += (long long) rc[i] * gc[j] * (r - l);
    }
  }
  cout << ans << endl;
}
0