結果
問題 | No.1619 Coccinellidae |
ユーザー | shotoyoo |
提出日時 | 2021-07-22 23:10:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,071 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,212 KB |
実行使用メモリ | 87,344 KB |
最終ジャッジ日時 | 2024-07-17 19:53:17 |
合計ジャッジ時間 | 3,720 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,216 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) n,m,k = list(map(int, input().split())) def sub(n,m,k): k0 = k l = list(range(1,n+1)) l[-1] = m - (n-1)*(n)//2 l.sort() # print(l) ans = [-1]*n done = [0]*n for v in range(n, 0, -1): i = n - v if k>v-1: k -= v-1 ans[v-1] = l[i] done[i] = 1 else: ans[k] = l[i] done[i] = 1 break j = 0 for i in range(n): while j<n and ans[j]>=0: j += 1 if not done[i]: ans[j] = l[i] # print(ans, k) assert sum(ans)==m assert all((ans[i]>=0 for i in range(n))) assert len(set(ans))==n val = 0 for i in range(n): for j in range(i+1,n): if ans[i]>ans[j]: val += 1 assert val==k0 write("\n".join(map(str, ans))) sub(n,m,k)