結果
問題 | No.110 しましまピラミッド |
ユーザー | chiho_miyako |
提出日時 | 2015-04-14 12:55:15 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,873 bytes |
コンパイル時間 | 2,159 ms |
コンパイル使用メモリ | 77,704 KB |
実行使用メモリ | 45,928 KB |
最終ジャッジ日時 | 2024-07-04 14:25:36 |
合計ジャッジ時間 | 10,539 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
41,504 KB |
testcase_01 | AC | 105 ms
40,072 KB |
testcase_02 | AC | 117 ms
41,056 KB |
testcase_03 | AC | 117 ms
41,064 KB |
testcase_04 | AC | 112 ms
41,240 KB |
testcase_05 | AC | 113 ms
41,156 KB |
testcase_06 | AC | 123 ms
41,292 KB |
testcase_07 | AC | 126 ms
41,328 KB |
testcase_08 | AC | 121 ms
41,080 KB |
testcase_09 | AC | 112 ms
41,080 KB |
testcase_10 | AC | 115 ms
41,040 KB |
testcase_11 | AC | 112 ms
41,164 KB |
testcase_12 | AC | 115 ms
41,196 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int nw = koko.nextInt(); int[] ww = new int[nw]; for(int i=0; i<nw; i++){ ww[i] = koko.nextInt(); } int nb = koko.nextInt(); int[] wb = new int[nb]; for(int i=0; i<nb; i++){ wb[i] = koko.nextInt(); } Arrays.sort(ww); int[] w = new int[nw]; for(int i=0; i<nw; i++){ w[i]=ww[nw-1-i]; } Arrays.sort(wb); int[] b = new int[nb]; for(int i=0; i<nb; i++){ b[i]=wb[nb-1-i]; } char color = 'N'; int count=0; int countb=0; int countw=0; int now=0; if(w[0]>b[0]){ count=1; countw=0; now=w[0]; color='W'; while(countb!=nb-1||countw!=nw-1){ if(color=='W'){ if(b[nb-1]>=now){ break; } for(int i=countb; i<nb; i++){ if(b[i]<now){ count=count+1; countb=i+1; now=b[i]; color='B'; break; } } }else if(color=='B'){ if(w[nw-1]>=now){ break; } for(int i=countw; i<nw; i++){ if(w[i]<now){ count=count+1; countw=i+1; now=w[i]; color='W'; break; } } } } }else if(w[0]<b[0]){ count=1; countb=0; now=b[0]; color='B'; while(countb!=nb-1||countw!=nw-1){ if(color=='W'){ if(b[nb-1]>=now){ break; } for(int i=countb; i<nb; i++){ if(b[i]<now){ count=count+1; countb=i+1; now=b[i]; color='B'; break; } } }else if(color=='B'){ if(w[nw-1]>=now){ break; } for(int i=countw; i<nw; i++){ if(w[i]<now){ count=count+1; countw=i+1; now=w[i]; color='W'; break; } } } } }else if(w[0]==b[0]){ count=1; now=w[0]; if(nb>2&&nw>2){ for(int i=1; i<Math.min(nb,nw); i++){ if(w[i]==b[i]){ if(w[i]<now){ count=count+1; now=w[i]; } }else if(w[i]>b[i]){ if(w[i]<now){ count=count+1; now=w[i]; countw=i+1; countb=i; color='W'; break; }else if(b[i]<now){ count=count+1; now=b[i]; countw=i+1; countb=i+1; color='B'; break; } }else if(i==Math.min(nb,nw)-1&&w[i]==b[i]){ if(nb>nw){ now=w[i]; countw=nw-1; countb=nw-1; color='W'; }else if(nw>nb){ now=b[i]; countw=nb-1; countb=nb-1; color='B'; } } } }else if(nb==1){ count=1; countb=0; now=b[0]; countw=0; color='B'; }else if(nw==1){ count=1; countb=0; countw=0; now=w[0]; color='W'; } while(countb!=nb-1||countw!=nw-1){ if(color=='W'){ if(b[nb-1]>=now){ break; } for(int i=countb; i<nb; i++){ if(b[i]<now){ count=count+1; countb=i+1; now=b[i]; color='B'; break; } } }else if(color=='B'){ if(w[nw-1]>=now){ break; } for(int i=countw; i<nw; i++){ if(w[i]<now){ count=count+1; countw=i+1; now=w[i]; color='W'; break; } } } } } System.out.println(count); } }