結果

問題 No.1623 三角形の制作
ユーザー SSRSSSRS
提出日時 2021-07-23 21:25:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 172,172 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-07-18 16:57:54
合計ジャッジ時間 10,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
5,248 KB
testcase_01 AC 44 ms
5,376 KB
testcase_02 AC 547 ms
5,376 KB
testcase_03 AC 541 ms
5,376 KB
testcase_04 AC 534 ms
5,376 KB
testcase_05 AC 626 ms
5,504 KB
testcase_06 AC 425 ms
5,376 KB
testcase_07 AC 543 ms
5,376 KB
testcase_08 AC 428 ms
5,376 KB
testcase_09 AC 526 ms
5,376 KB
testcase_10 AC 590 ms
5,376 KB
testcase_11 AC 560 ms
5,376 KB
testcase_12 AC 210 ms
5,376 KB
testcase_13 AC 214 ms
5,376 KB
testcase_14 AC 219 ms
5,376 KB
testcase_15 AC 310 ms
5,632 KB
testcase_16 AC 317 ms
5,504 KB
testcase_17 AC 333 ms
5,632 KB
testcase_18 AC 331 ms
5,632 KB
testcase_19 AC 253 ms
5,376 KB
testcase_20 AC 47 ms
5,376 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