結果
問題 | No.74 貯金箱の退屈 |
ユーザー | 37zigen |
提出日時 | 2016-03-24 03:06:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,563 bytes |
コンパイル時間 | 2,194 ms |
コンパイル使用メモリ | 80,036 KB |
実行使用メモリ | 55,300 KB |
最終ジャッジ日時 | 2024-10-01 21:47:02 |
合計ジャッジ時間 | 9,437 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
54,092 KB |
testcase_01 | AC | 128 ms
54,008 KB |
testcase_02 | AC | 149 ms
54,048 KB |
testcase_03 | AC | 174 ms
54,400 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 161 ms
54,500 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 204 ms
54,360 KB |
testcase_16 | AC | 197 ms
54,388 KB |
testcase_17 | AC | 151 ms
54,144 KB |
testcase_18 | AC | 130 ms
52,996 KB |
testcase_19 | AC | 200 ms
54,544 KB |
testcase_20 | AC | 212 ms
54,416 KB |
testcase_21 | AC | 217 ms
54,272 KB |
testcase_22 | AC | 154 ms
54,572 KB |
testcase_23 | AC | 163 ms
54,140 KB |
testcase_24 | AC | 212 ms
54,552 KB |
testcase_25 | AC | 192 ms
54,576 KB |
testcase_26 | AC | 208 ms
54,284 KB |
testcase_27 | AC | 219 ms
54,856 KB |
testcase_28 | AC | 215 ms
54,388 KB |
testcase_29 | AC | 200 ms
54,464 KB |
testcase_30 | AC | 209 ms
54,264 KB |
testcase_31 | AC | 210 ms
54,328 KB |
testcase_32 | AC | 178 ms
54,508 KB |
ソースコード
package yukicoder074; import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int[] d=new int[n]; int[] w=new int[n];//k番目のコインの裏表(0の時裏、1の時表) double[][] Coe=new double[n][n+1]; for(int i=0;i<n;i++){ d[i]=sc.nextInt(); } for(int i=0;i<n;i++){ w[i]=sc.nextInt(); } for(int i=0;i<n;i++){ Coe[(i+d[i])%n][i]=1; int s=i-d[i]; while(s<0){ s+=n; } Coe[(s)%n][i]=1; } for(int i=0;i<n;i++){ int a=0; if(w[i]==1)a=0; if(w[i]==0)a=1; Coe[i][n]=a; } // for(int o=0;o<Coe.length;o++){ // for(int p=0;p<Coe[0].length;p++){ // System.out.print(Coe[o][p]+" "); // } // System.out.println(); // } if(gaussElimination(Coe)==true){ System.out.println("Yes"); }else{ System.out.println("No"); } } public static boolean gaussElimination(double[][] coe){ for(int i=0;i<coe[0].length-1;i++){ for(int j=i;j<coe.length;j++){ if(coe[j][i]!=0){ double[] tmp=coe[j]; coe[j]=coe[i]; coe[i]=tmp; break; } } double coe1=coe[i][i]; if(coe1==0){ continue; } for(int j=0;j<coe[0].length;j++){ coe[i][j]=coe[i][j]/coe1; } for(int j=0;j<coe.length;j++){ if(i==j)continue; double coe2=coe[j][i]; for(int k=0;k<coe[0].length;k++){ coe[j][k]=(coe[j][k]-coe2*coe[i][k])%2; while(coe[j][k]<0){ coe[j][k]+=2; } } } } // for(int i=0;i<coe.length;i++){ // for(int j=0;j<coe[0].length;j++){ // System.out.print(coe[i][j]+" "); // } // System.out.println(); // } ArrayList<Integer> unfixed=new ArrayList<>(); double[] ans=new double[coe.length]; for(int i=coe.length-1;i>=0;i--){ double sum=0; for(int j=i+1;j<coe[0].length-1;j++){ sum=(sum+coe[i][j]*ans[j])%2; } if(coe[i][i]==1){ ans[i]=(-sum+coe[i][coe[0].length-1])%2; while(ans[i]<0)ans[i]+=2; }else if(coe[i][i]==0){ if(-sum+coe[i][coe[0].length-1]!=0){ System.err.println("対角成分がゼロかつ和が一致しない"); System.err.println(i+"行"); return false; }else { ans[i]=0; unfixed.add(i); } }else{ System.err.println("ErrorAt90"); } } // System.out.println("answer"); // for(int i=0;i<coe.length;i++){ // System.out.print(ans[i]+" "); // } // for(int i=0;i<coe.length;i++){ // if((int)ans[i]!=ans[i]){ // return false; // } // } // System.out.println(); return true; } }