結果
問題 | No.767 配られたジャパリまん |
ユーザー | 37zigen |
提出日時 | 2020-04-09 23:52:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,268 bytes |
コンパイル時間 | 2,813 ms |
コンパイル使用メモリ | 81,628 KB |
実行使用メモリ | 72,160 KB |
最終ジャッジ日時 | 2024-09-14 02:16:46 |
合計ジャッジ時間 | 8,121 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
58,344 KB |
testcase_01 | AC | 110 ms
58,300 KB |
testcase_02 | AC | 111 ms
58,196 KB |
testcase_03 | AC | 108 ms
58,448 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 111 ms
58,480 KB |
testcase_07 | AC | 112 ms
58,308 KB |
testcase_08 | AC | 111 ms
58,156 KB |
testcase_09 | AC | 121 ms
58,428 KB |
testcase_10 | AC | 201 ms
59,640 KB |
testcase_11 | AC | 130 ms
60,312 KB |
testcase_12 | AC | 128 ms
58,416 KB |
testcase_13 | AC | 206 ms
59,636 KB |
testcase_14 | AC | 124 ms
58,544 KB |
testcase_15 | AC | 115 ms
58,212 KB |
testcase_16 | AC | 129 ms
58,520 KB |
testcase_17 | AC | 111 ms
58,388 KB |
testcase_18 | AC | 114 ms
58,400 KB |
testcase_19 | AC | 172 ms
59,712 KB |
testcase_20 | AC | 542 ms
72,160 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Comparator; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) { new Main().run(); } final long MOD=(long)1e8+7; int MAX=(int)3e5+1; long[] fac=new long[MAX]; long[] inv=new long[MAX]; long[] ifac=new long[MAX]; { fac[0]=fac[1]=ifac[0]=ifac[1]=inv[0]=inv[1]=1; for (int i=2;i<MAX;++i) { fac[i]=fac[i-1]*i%MOD; inv[i]=MOD-inv[(int)MOD%i]*(MOD/i)%MOD; ifac[i]=inv[i]*ifac[i-1]%MOD; } } long binom(int n,int k) { if(n<0||k<0||n-k<0) return 0; return fac[n]*ifac[k]%MOD*ifac[n-k]%MOD; } long f(int H, int W, int[][] P, int[] ord, int s, int K) { long ans=1; int prey=0,prex=0; for (int i=0;i<=K;++i) { if ((s>>i)%2==0) continue; if (!(P[ord[i]][0]>=prey&&P[ord[i]][1]>=prex)) return 0; int dy=P[ord[i]][0]-prey; int dx=P[ord[i]][1]-prex; ans=ans*binom(dy+dx,dy)%MOD; prey=P[ord[i]][0]; prex=P[ord[i]][1]; } return ans; } void run() { FastScanner sc=new FastScanner(); int H=sc.nextInt(); int W=sc.nextInt(); int K=sc.nextInt(); int[][] P=new int[K+1][3]; int[] ord=new int[K+1]; for (int i=0;i<=K;++i) ord[i]=i; for (int i=0;i<K;++i) { P[i][0]=sc.nextInt(); P[i][1]=sc.nextInt(); P[i][2]=i; } P[K][0]=H; P[K][1]=W; P[K][2]=K; Arrays.sort(P, Comparator.comparing((int[] a)->a[0]).thenComparing(a->a[1])); for (int i=0;i<=K;++i) ord[P[i][2]]=i; long[] dist=new long[1<<K];//必ず1の立っている箇所を通る。 for (int s=0;s<1<<K;++s) { dist[s]=f(H, W, P, ord, s|1<<K, K); } for (int s=0;s<1<<K;++s) { dist[s]*=(Integer.bitCount(s)%2==0?1:MOD-1); dist[s]%=MOD; } for (int i=0;i<K;++i) { for (int s=(1<<K)-1;s>=0;--s) { if ((s>>i)%2==1) continue; dist[s|1<<i]+=dist[s]; dist[s|1<<i]%=MOD; } } //1の立っている場所をどこか通る。 PrintWriter pw=new PrintWriter(System.out); for (int s=0;s<1<<K;++s) { pw.println(dist[s]); } pw.close(); } void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));} } class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { long nl = nextLong(); if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException(); return (int) nl; } public double nextDouble() { return Double.parseDouble(next());} }