結果
問題 | No.1623 三角形の制作 |
ユーザー | erbowl |
提出日時 | 2022-09-02 07:18:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,179 bytes |
コンパイル時間 | 2,490 ms |
コンパイル使用メモリ | 214,048 KB |
実行使用メモリ | 145,408 KB |
最終ジャッジ日時 | 2024-11-15 12:06:52 |
合計ジャッジ時間 | 64,248 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; #define int long long signed main(){ cin.tie(0); ios::sync_with_stdio(false); ll n; std::cin >> n; map<ll,ll> cnt1,cnt2,cnt3; for (int i = 0; i < n; i++) { ll a; std::cin >> a; cnt1[a]++; } for (int i = 0; i < n; i++) { ll a; std::cin >> a; cnt2[a]++; } for (int i = 0; i < n; i++) { ll a; std::cin >> a; cnt3[a]++; } vector<vector<ll>> dp(6001,vector<ll>(3001)); for (int i = 0; i <= 6000; i++) { for (int j = 0; j <= 3000; j++) { dp[i][max(j,i-j)] += cnt2[i-j]*cnt3[j]; } } vector<ll> ruic(3001); for (int i = 1; i <= 3000; i++) { ruic[i] = ruic[i-1]+cnt1[i]; } ll ans = 0; for (int i = 0; i <= 6000; i++) { for (int j = 0; j <= 3000; j++) { ans += max(0ll,(ruic[i-1]-ruic[j-1]))*dp[i][j]; // if((ruic[i-1]-ruic[j-1]>0*dp[i][j]>0){ // std::cout << i<<" "<<j<<" "<<ans << std::endl; // } } } std::cout << ans << std::endl; }