結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | sotanishy |
提出日時 | 2021-07-30 22:15:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 2,529 ms |
コンパイル使用メモリ | 220,064 KB |
実行使用メモリ | 125,952 KB |
最終ジャッジ日時 | 2024-09-16 00:38:54 |
合計ジャッジ時間 | 7,325 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
125,952 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 45 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N, K; cin >> N >> K; vector<int> c(10); for (int i = 1; i < 10; ++i) cin >> c[i]; map<vector<int>, ll> cnt; cnt[c] = 1; queue<vector<int>> que; que.push(c); while (!que.empty()) { auto v = que.front(); auto u = v; que.pop(); for (int i = 1; i < 10; ++i) { if (u[i] == 0) continue; --u[i]; u[0] = (10 * v[0] + i) % K; if (!cnt.count(u)) { cnt[u] = 0; que.push(u); } cnt[u] += cnt[v]; ++u[i]; } } cout << cnt[vector<int>(10)] << endl; }