結果

問題 No.1623 三角形の制作
ユーザー momoyuumomoyuu
提出日時 2024-08-11 01:30:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 1,272 ms
コンパイル使用メモリ 97,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-11 01:30:10
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<int> r(n),g(n),b(n);
    for(int i = 0;i<n;i++) cin>>r[i];
    for(int i = 0;i<n;i++) cin>>b[i];
    for(int i = 0;i<n;i++) cin>>g[i];
    const int mx = 3e3 + 1;
    vector<ll> cb(mx,0),cg(mx,0);
    vector<ll> sum(mx+1,0);
    for(int i = 0;i<n;i++) sum[r[i]+1]++;
    for(int i = 0;i<mx;i++) sum[i+1] += sum[i];
    ll ans = 0;
    for(int i = 0;i<n;i++) cb[b[i]]++;
    for(int i = 0;i<n;i++) cg[g[i]]++;
    for(int i = 0;i<mx;i++) {
        if(cb[i]==0) continue;
        for(int j = 0;j<mx;j++){
            if(cg[j]==0) continue;
            int ri = i + j;
            int le = max(i,j);
            if(ri>mx) ri = mx;
            if(le<ri) ans += sum[ri] - sum[le];
        }
    }
    cout<<ans<<endl;
}

0