結果

問題 No.2136 Dice Calendar?
ユーザー CuriousFairy315CuriousFairy315
提出日時 2022-10-10 21:05:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,987 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 755,424 KB
最終ジャッジ日時 2023-09-07 00:02:22
合計ジャッジ時間 35,216 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,424 KB
testcase_01 AC 69 ms
71,428 KB
testcase_02 AC 122 ms
82,060 KB
testcase_03 AC 71 ms
71,576 KB
testcase_04 AC 70 ms
71,444 KB
testcase_05 AC 95 ms
77,368 KB
testcase_06 AC 93 ms
77,408 KB
testcase_07 AC 94 ms
78,132 KB
testcase_08 AC 110 ms
78,072 KB
testcase_09 AC 113 ms
80,928 KB
testcase_10 AC 143 ms
82,996 KB
testcase_11 AC 166 ms
95,144 KB
testcase_12 AC 189 ms
100,656 KB
testcase_13 AC 178 ms
95,440 KB
testcase_14 AC 228 ms
108,368 KB
testcase_15 AC 731 ms
252,712 KB
testcase_16 AC 937 ms
283,224 KB
testcase_17 AC 723 ms
278,040 KB
testcase_18 AC 2,108 ms
349,492 KB
testcase_19 AC 2,641 ms
432,860 KB
testcase_20 AC 2,670 ms
505,104 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 AC 276 ms
235,140 KB
testcase_25 AC 392 ms
248,560 KB
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [list(map(lambda x: int(x) - 1, input().split())) for _ in range(N)]
factorial = [1]
for i in range(N): factorial.append(factorial[i] * (i + 1))

class DiceSet: # ダイスから作られる整数の多重集合を管理
	
	def __init__(self, multiset, partition):
		self.multiset = multiset # 多重集合を、仕切りの考え方で見なした時のbit列
		self.partition = partition # multisetで立っているbitの位置
	
	def getPartition(self, index): # multisetでi番目に立っているbitの位置を求める
		return self.partition >> 5 * index & 0b11111
	
	def multichoose(self): # この多重集合を並べてできる組合せ
		ret = factorial[self.getPartition(9) - 9]
		for i in range(9): ret //= factorial[self.getPartition(i + 1) - self.getPartition(i) - 1]
		return ret
	
	def next(self, dice, uniqueCheck, nextQueue): # diceを追加したときの多重集合をnextQueueに入れる
		for result in dice: # 出目がresultだった時
			mask = (1 << self.getPartition(result)) - 1
			nextSet = (self.multiset & 0x1FFFFFFF - mask) << 1 | self.multiset & mask
			if (uniqueCheck[nextSet >> 6] >> (nextSet & 0x3F) & 1) == 0: # まだこの多重集合を計算対象にしていないなら
				uniqueCheck[nextSet >> 6] |= 1 << (nextSet & 0x3F)
				nextPartition = self.partition + (0b00001_00001_00001_00001_00001_00001_00001_00001_00001_00001 & 0x3FFFFFFFFFFFF - ((1 << result * 5 + 5) - 1))
				nextQueue.append(DiceSet(nextSet, nextPartition))
		return uniqueCheck


nowQueue = [DiceSet(0b11111111, 0b01001_01000_00111_00110_00101_00100_00011_00010_00001_00000)] # 初期値は、0要素の集合として管理される
for dice in S:
	uniqueCheck = [0] * (1 << N + 2) # 既に調べた多重集合を管理するためのBitSet
	nextQueue = []
	for diceSet in nowQueue: diceSet.next(dice, uniqueCheck, nextQueue)
	nowQueue = nextQueue

ans = 0
for diceSet in nowQueue: ans += diceSet.multichoose()
ans %= 998_244_353
print(ans)
0