結果

問題 No.1279 Array Battle
ユーザー kpinkcatkpinkcat
提出日時 2023-08-31 15:53:33
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 109,332 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-03 04:36:01
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;

int main()
{
    int n, cnt = 0;
    cin >> n;
    vector<int> a(n), b(n), sum1;
    for (int i = 0; i < n; i++) cin >> a[i];
    for (int i = 0; i < n; i++) cin >> b[i];
    sort(a.begin(), a.end());
    do {
        int tsum = 0;
        for (int i = 0; i < n; i ++){
            if (a[i] > b[i]) tsum += (a[i] - b[i]);
        }
        sum1.push_back(tsum);
    }while (next_permutation(a.begin(), a.end()));
    sort(sum1.begin(), sum1.end(), greater());
    for (int i = 0; i < sum1.size(); i++){
        if (sum1[i] == sum1[0]) cnt++;
    }
    cout << cnt << endl;
}   
0