結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | fgwiebfaoish |
提出日時 | 2019-12-12 00:15:52 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,920 bytes |
コンパイル時間 | 2,662 ms |
コンパイル使用メモリ | 115,724 KB |
実行使用メモリ | 28,972 KB |
最終ジャッジ日時 | 2024-06-24 08:08:59 |
合計ジャッジ時間 | 2,956 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
22,068 KB |
testcase_01 | AC | 27 ms
23,908 KB |
testcase_02 | AC | 25 ms
23,900 KB |
testcase_03 | AC | 28 ms
24,304 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 29 ms
24,288 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 35 ms
24,628 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 34 ms
24,472 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 32 ms
24,568 KB |
testcase_18 | AC | 36 ms
28,904 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 32 ms
24,372 KB |
testcase_24 | AC | 34 ms
25,140 KB |
testcase_25 | WA | - |
testcase_26 | AC | 36 ms
25,136 KB |
testcase_27 | WA | - |
testcase_28 | AC | 35 ms
24,932 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 36 ms
24,928 KB |
testcase_32 | 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.Generic; using System.Collections; using System.Collections.Specialized; using System.Linq; using System.Text; using System.IO; using System.Reflection; using static System.Math; using System.Numerics; static class Program{ const int mod=(int)1e9+7; static void Main(){ Sc sc=new Sc(); var n=sc.I; var a=sc.Ia3(false,0,true,int.MinValue/3); var b=sc.Ia3(false,0,true,int.MinValue/3); var d=sc.Ia; Array.Sort(d); int p=a[0]+b[0]; int ans=0; for(int i = 0,j=0,k=0;i<n;i++) { if(a[j]-a[j+1]<b[k]-b[k+1]){p=p-a[j]+a[j+1];j++;} else{p=p-b[k]+b[k+1];k++;} int g=d.Bs(p+1,true); if(g==-1){break;} ans++; d[g]=int.MaxValue; } Console.WriteLine("{0}",ans); } } static class Ex1{ public static int Bs(this int[] a,int x,bool b){return Bs2(a,x,b,a.Length);} public static int Bs(this int[] a,int x,bool b,int ub){return Bs2(a,x,b,ub+1);} private static int Bs2(int[] a,int x,bool b,int ub){ int lb=-1,mid=0; while(ub-lb>1){ mid=(ub+lb)/2; if(a[mid]>=x){ub=mid;} else{lb=mid;} } return b?lb:ub; } } public class Sc{ public int I{get{return int.Parse(Console.ReadLine());}} public long L{get{return long.Parse(Console.ReadLine());}} public double D{get{return double.Parse(Console.ReadLine());}} public string S{get{return Console.ReadLine();}} public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}} public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}} public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}} public string[] Sa{get{return Console.ReadLine().Split();}} public object[] Oa{get{return Console.ReadLine().Split();}} public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}} public int[] Ia3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),int.Parse);} public int[] Ia3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),int.Parse);} public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}} public long[] La3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),long.Parse);} public long[] La3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),long.Parse);} public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;} public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;} public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;} public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;} }