結果
問題 | No.1619 Coccinellidae |
ユーザー | 夜 |
提出日時 | 2021-07-23 19:09:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 976 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 93,592 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 14:19:10 |
合計ジャッジ時間 | 2,320 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; long long a[100010]; int main() { long long n, m, k; cin >> n >> m >> k; for (int i = 0; i < n; i++) { a[i] = i; } for (int i = n - 2; i >= 0; i--) { if (k > n - i - 1) { k -= n - i - 1; } else { cout << i << " " << i + k << endl; a[i + k] = i; bool bo = false; for (int j = i - 1; j >= 0; j--) { if (a[i - j - 1] != i - j - 1) { bo = true; } a[i - j - 1 + bo] = i - j - 1; } for (int j = i + 1; j < n; j++) { if (a[n - j + i] != n - j + i) { bo = true; } a[n - j + i - bo] = j; } break; } } for (int i = 0; i < n; i++) { if (a[i] == n - 1) { a[i] += m - n * (n - 1) / 2; } cout << a[i] << endl; } }