結果
問題 | No.1619 Coccinellidae |
ユーザー | 夜 |
提出日時 | 2021-07-23 19:01:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 917 bytes |
コンパイル時間 | 857 ms |
コンパイル使用メモリ | 92,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 14:03:31 |
合計ジャッジ時間 | 4,429 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 89 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 117 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 75 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 62 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 110 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#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] = -1; } for (int i = n - 2; i >= 0; i--) { if (k > n - i - 1) { k -= n - i - 1; } else { a[i + k] = i; bool bo = false; for (int j = i - 1; j >= 0; j--) { if (a[i - j - 1] != -1) { bo = true; } a[i - j - 1 + bo] = j; } for (int j = i + 1; j < n; j++) { if (a[n - j + i] != -1) { 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; } }