結果

問題 No.1307 Rotate and Accumulate
ユーザー りあんりあん
提出日時 2021-06-14 15:36:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,021 ms / 5,000 ms
コード長 719 bytes
コンパイル時間 3,055 ms
コンパイル使用メモリ 218,476 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 19:32:13
合計ジャッジ時間 12,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 444 ms
5,248 KB
testcase_09 AC 552 ms
5,376 KB
testcase_10 AC 231 ms
5,376 KB
testcase_11 AC 427 ms
5,376 KB
testcase_12 AC 240 ms
5,376 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 68 ms
5,376 KB
testcase_15 AC 1,003 ms
5,376 KB
testcase_16 AC 980 ms
5,376 KB
testcase_17 AC 1,006 ms
5,376 KB
testcase_18 AC 992 ms
5,376 KB
testcase_19 AC 1,008 ms
5,376 KB
testcase_20 AC 1,021 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
using namespace std;

const int B = 1000;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n, q;
    cin >> n >> q;
    int a[n * 2];
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        a[n + i] = a[i];
    }
    int cnt[n] = {};
    for (int i = 0; i < q; ++i) {
        int r;
        cin >> r;
        ++cnt[r];
    }
    int b[n] = {};
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            b[j] += a[i + j] * cnt[i];
        }
    }
    for (int i = 0; i < n; ++i) {
        cout << b[i] << (i < n - 1 ? ' ' : '\n');
    }

    return 0;
}
0