結果
問題 | No.506 限られたジャパリまん |
ユーザー | mban |
提出日時 | 2017-04-28 19:19:54 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,812 bytes |
コンパイル時間 | 956 ms |
コンパイル使用メモリ | 106,752 KB |
実行使用メモリ | 22,528 KB |
最終ジャッジ日時 | 2024-06-28 04:17:16 |
合計ジャッジ時間 | 3,859 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
17,664 KB |
testcase_01 | AC | 29 ms
18,048 KB |
testcase_02 | AC | 29 ms
18,304 KB |
testcase_03 | AC | 27 ms
18,048 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 28 ms
18,176 KB |
testcase_07 | WA | - |
testcase_08 | AC | 349 ms
22,272 KB |
testcase_09 | AC | 179 ms
22,528 KB |
testcase_10 | AC | 32 ms
19,072 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 29 ms
17,920 KB |
testcase_14 | WA | - |
testcase_15 | AC | 29 ms
18,304 KB |
testcase_16 | AC | 267 ms
22,272 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; public class Program { public static void Main(string[] args) { new Magatro().Solve(); } } class Magatro { private int H, W, K, P; private int[] x, y; private string[] N; private void Scan() { string[] line = Console.ReadLine().Split(' '); H = int.Parse(line[0]); W = int.Parse(line[1]); K = int.Parse(line[2]); P = int.Parse(line[3]); x = new int[K]; y = new int[K]; N = new string[K]; for (int i = 0; i < K; i++) { line = Console.ReadLine().Split(' '); x[i] = int.Parse(line[0]); y[i] = int.Parse(line[1]); N[i] = line[2]; } } public void Solve() { Scan(); int max = -1; int ans = 0; for (int i = 0; i < (1 << K); i++) { if (BitCount(i) != P) { continue; } int cnt = Count(i); if (max < cnt) { ans = i; max = cnt; } } Console.WriteLine(max); for (int i = 0; i < K; i++) { int j = 1 << i; if ((ans & j) != 0) { Console.WriteLine(N[i]); } } } private int Count(int i) { var d = new Dictionary<Pair<int, int>, bool>(); for (int j = 0; j < K; j++) { int k = 1 << j; if ((i & k) == 0) { d[new Pair<int, int>(x[j], y[j])] = true; } } var dp = new int[H + 1, W + 1]; dp[0, 0] = 1; for (int j = 0; j <= H; j++) { for (int k = 0; k <= W; k++) { bool o; if (d.TryGetValue(new Pair<int, int>(j,k),out o)) continue; if (j < H) { dp[j + 1, k] += dp[j, k]; } if (k < W) { dp[j, k + 1] += dp[j, k]; } } } return dp[H, W]; } private int BitCount(int n) { n = (n & 0x55555555) + (n >> 1 & 0x55555555); n = (n & 0x33333333) + (n >> 2 & 0x33333333); n = (n & 0x0f0f0f0f) + (n >> 4 & 0x0f0f0f0f); n = (n & 0x00ff00ff) + (n >> 8 & 0x00ff00ff); n = (n & 0x0000ffff) + (n >> 16 & 0x0000ffff); return n; } } struct Pair<F, S> { public F First; public S Second; public Pair(F f, S s) { First = f; Second = s; } }