結果
問題 | No.230 Splarraay スプラレェーイ |
ユーザー | fgwiebfaoish |
提出日時 | 2020-02-22 19:42:15 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,123 bytes |
コンパイル時間 | 1,437 ms |
コンパイル使用メモリ | 113,988 KB |
実行使用メモリ | 34,680 KB |
最終ジャッジ日時 | 2024-10-09 20:45:38 |
合計ジャッジ時間 | 4,538 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
18,048 KB |
testcase_01 | AC | 26 ms
18,048 KB |
testcase_02 | AC | 26 ms
17,920 KB |
testcase_03 | AC | 25 ms
17,792 KB |
testcase_04 | AC | 26 ms
17,792 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 151 ms
21,964 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 180 ms
24,704 KB |
testcase_19 | 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 q=sc.I; St st=new St(n); long a=0,b=0; const int o=1000000; for(int i = 0;i<q;i++) { var e=sc.Ia; if(e[0]==1){st.Ud3(e[1],e[2],1);} else if(e[0]==2){st.Ud3(e[1],e[2],o);} else{ long p=st.Get(e[1],e[2]); long c=p%o; long d=(p-c)/o; if(c>d){a+=Max(c,d);} else if(d<c){b+=Max(c,d);} } } long g=st.Get(0,n-1); a+=g%o; b+=(g-(g%o))/o; Console.WriteLine("{0} {1}",a,b); } } public class St{ public long[] dat,dat3; private bool[] bo3; private int m=1,cnt=0; public St(int n){ while(m<n){m<<=1;} cnt=m+n-1; dat=new long[cnt]; dat3=new long[cnt+1]; bo3=new bool[cnt]; } private long Fdg(int a,int b,int k,int l,int r){ if(k>=cnt){return 0;} if(bo3[k]){ dat[k]=dat3[k]; if(2*k+1<cnt){dat3[2*k+1]=dat3[k]>>1;bo3[2*k+1]=true;} if(2*k+2<cnt){dat3[2*k+2]=dat3[k]>>1;bo3[2*k+2]=true;} bo3[k]=false; } if(r<a||b<l){return 0;} if(a<=l&&r<=b){return dat[k];} else{return Fdg(a,b,k*2+1,l,(l+r)>>1)+Fdg(a,b,k*2+2,(l+r+1)>>1,r);} } public long Get(int a,int b){return Fdg(a,b,0,0,m-1);} public void Ud3(int a,int b,long d){Hn3(a,b,0,0,m-1,d*m);} private long Hn3(int a,int b,int k,int l,int r,long d){ if(k>=cnt){return 0;} if(a<=l&&r<=b){dat3[k]=d;bo3[k]=true;return d;} if(bo3[k]){ dat[k]=dat3[k]; if(2*k+1<cnt){dat3[2*k+1]=dat3[k]>>1;bo3[2*k+1]=true;} if(2*k+2<cnt){dat3[2*k+2]=dat3[k]>>1;bo3[2*k+2]=true;} bo3[k]=false; } if(r>=a&&b>=l){ dat[k]=Hn3(a,b,k*2+1,l,(l+r)>>1,d>>1)+Hn3(a,b,k*2+2,(l+r+1)>>1,r,d>>1); return dat[k]; } return dat[k]; } } 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 double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}} public double[] Da3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),double.Parse);} public double[] Da3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),double.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;} }