結果
問題 | No.151 セグメントフィッシング |
ユーザー | 14番 |
提出日時 | 2016-04-23 00:39:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,835 bytes |
コンパイル時間 | 1,088 ms |
コンパイル使用メモリ | 110,076 KB |
実行使用メモリ | 56,940 KB |
最終ジャッジ日時 | 2024-10-04 15:12:34 |
合計ジャッジ時間 | 13,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
26,456 KB |
testcase_01 | AC | 29 ms
26,200 KB |
testcase_02 | AC | 30 ms
26,672 KB |
testcase_03 | AC | 30 ms
26,288 KB |
testcase_04 | AC | 31 ms
28,620 KB |
testcase_05 | AC | 31 ms
28,108 KB |
testcase_06 | AC | 31 ms
26,220 KB |
testcase_07 | AC | 30 ms
24,244 KB |
testcase_08 | AC | 1,253 ms
48,408 KB |
testcase_09 | AC | 1,195 ms
50,684 KB |
testcase_10 | AC | 1,204 ms
48,368 KB |
testcase_11 | AC | 1,189 ms
48,460 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
コンパイルメッセージ
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.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int[] inpt = Reader.GetInt(); int areaLength = inpt[0]; int queryCount = inpt[1]; Dictionary<int, int> leftDic = new Dictionary<int, int>(); Dictionary<int, int> rightDic = new Dictionary<int, int>(); for(int i=0; i<queryCount; i++) { Dictionary<int, int> subL = new Dictionary<int, int>(); Dictionary<int, int> subR = new Dictionary<int, int>(); List<int> keys = new List<int>(leftDic.Keys); keys.ForEach((a)=>{ if(a == 0) { subR.Add(0, leftDic[a]); } else { subL.Add(a-1, leftDic[a]); } }); keys = new List<int>(rightDic.Keys); keys.ForEach((a)=>{ if(a == areaLength - 1) { if(subL.ContainsKey(a)) { subL[a]+=rightDic[a]; } else { subL.Add(a, rightDic[a]); } } else if(subR.ContainsKey(a+1)) { subR[a+1] += rightDic[a]; } else { subR.Add(a+1, rightDic[a]); } }); string[] tmp = Reader.ReadLine().Split(' '); int num1 = int.Parse(tmp[1]); int num2 = int.Parse(tmp[2]); if(tmp[0].Equals("R")) { if(subR.ContainsKey(num1)) { subR[num1] += num2; } else { subR.Add(num1, num2); } } else if(tmp[0].Equals("L")) { if(subL.ContainsKey(num1)) { subL[num1] += num2; } else { subL.Add(num1, num2); } } rightDic = subR; leftDic = subL; if(tmp[0].Equals("C")) { HashSet<int> hs = new HashSet<int>(rightDic.Keys); hs = new HashSet<int>(hs.Concat(leftDic.Keys)); long ans = 0; hs.Where(a=> a>=num1 && a < num2).ToList().ForEach((b)=>{ if(rightDic.ContainsKey(b)) { ans += rightDic[b]; } if(leftDic.ContainsKey(b)) { ans += leftDic[b]; } }); Console.WriteLine(ans); } } } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } public static int[] GetInt(char delimiter = ' ', bool trim = false) { string inptStr = ReadLine(); if (trim) { inptStr = inptStr.Trim(); } string[] inpt = inptStr.Split(delimiter); int[] ret = new int[inpt.Length]; for (int i = 0; i < inpt.Length; i++) { ret[i] = int.Parse(inpt[i]); } return ret; } } static void Main() { Program prg = new Program(); prg.Proc(); } }