結果
問題 | No.2263 Perms |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2023-04-07 22:10:11 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 979 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 78,736 KB |
最終ジャッジ日時 | 2024-10-02 19:40:52 |
合計ジャッジ時間 | 9,057 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
54,272 KB |
testcase_01 | AC | 45 ms
54,272 KB |
testcase_02 | AC | 44 ms
54,144 KB |
testcase_03 | AC | 45 ms
54,144 KB |
testcase_04 | AC | 44 ms
54,272 KB |
testcase_05 | AC | 69 ms
69,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 254 ms
77,932 KB |
testcase_09 | RE | - |
testcase_10 | AC | 44 ms
60,656 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 44 ms
60,524 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 62 ms
69,196 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 42 ms
54,808 KB |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | AC | 42 ms
54,056 KB |
testcase_40 | AC | 42 ms
54,820 KB |
ソースコード
import random n,m = map(int,input().split()) A = [list(map(int,input().split())) for i in range(n)] for i in range(n): r = 0 c = 0 for j in range(n): r += A[i][j] c += A[j][i] if r != m or c != m: print(-1) exit() ans = [] for _ in range(m): l = [0]*n H = [0]*n W = [0]*n for i in range(n): ma = 0 for h in range(n): for w in range(n): if H[h] or W[w]: continue ma = max(ma,A[h][w]) cands = [] for h in range(n): for w in range(n): if H[h] or W[w]: continue if A[h][w] == ma: cands.append([h,w]) assert ma > 0 rind = random.randint(0,len(cands)-1) h,w = cands[rind] A[h][w] -= 1 H[h] = 1 W[w] = 1 l[h] = w+1 ans.append(l) for i in ans: print(*i)