結果

問題 No.329 全射
ユーザー TawaraTawara
提出日時 2015-12-25 18:21:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 36,936 KB
実行使用メモリ 20,620 KB
最終ジャッジ日時 2024-09-18 23:56:50
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
16,572 KB
testcase_01 AC 13 ms
17,504 KB
testcase_02 AC 13 ms
17,436 KB
testcase_03 AC 13 ms
17,456 KB
testcase_04 AC 12 ms
17,860 KB
testcase_05 AC 12 ms
16,608 KB
testcase_06 AC 12 ms
16,576 KB
testcase_07 AC 13 ms
17,836 KB
testcase_08 AC 12 ms
17,784 KB
testcase_09 AC 13 ms
18,312 KB
testcase_10 AC 12 ms
17,504 KB
testcase_11 AC 12 ms
17,872 KB
testcase_12 AC 12 ms
17,812 KB
testcase_13 AC 294 ms
19,116 KB
testcase_14 AC 239 ms
16,968 KB
testcase_15 AC 204 ms
17,084 KB
testcase_16 AC 231 ms
18,300 KB
testcase_17 AC 259 ms
20,552 KB
testcase_18 AC 258 ms
17,336 KB
testcase_19 AC 315 ms
17,256 KB
testcase_20 AC 280 ms
18,276 KB
testcase_21 AC 266 ms
17,112 KB
testcase_22 AC 336 ms
20,488 KB
testcase_23 AC 19 ms
18,008 KB
testcase_24 AC 18 ms
17,080 KB
testcase_25 AC 22 ms
18,304 KB
testcase_26 AC 19 ms
18,128 KB
testcase_27 AC 16 ms
18,028 KB
testcase_28 AC 13 ms
16,644 KB
testcase_29 AC 15 ms
17,832 KB
testcase_30 AC 15 ms
16,744 KB
testcase_31 AC 13 ms
17,616 KB
testcase_32 AC 14 ms
17,940 KB
testcase_33 AC 19 ms
17,220 KB
testcase_34 AC 19 ms
20,588 KB
testcase_35 AC 23 ms
19,152 KB
testcase_36 AC 20 ms
18,392 KB
testcase_37 AC 19 ms
18,420 KB
testcase_38 AC 19 ms
18,128 KB
testcase_39 AC 20 ms
18,120 KB
testcase_40 AC 22 ms
18,024 KB
testcase_41 AC 20 ms
20,620 KB
testcase_42 AC 22 ms
17,260 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |         scanf("%d%d",&N,&M);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:27:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |         rep(i,N) scanf("%d",w+i);
      |                  ~~~~~^~~~~~~~~~
main.cpp:29:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   29 |         rep(i,M){scanf("%d%d",&x,&y);x--;E[x][--y]=w[x];}
      |                  ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <stdio.h>

using namespace std;

typedef long long LL;

#define range(i,a,b) for(int i=(a);i<(b);i++)
#define rep(i,n) range(i,0,n)
#define P 1000000007
#define W 1001

LL C[W][W],F[W][W];
int w[W-1],E[W-1][W-1];

LL mpow(LL b,LL e){LL r=1;for(;e>0;e>>=1){if(e&1)r=r*b%P;b=b*b%P;} return r;}
LL calc(LL a,LL b){LL r=0;rep(k,b)r=(r+(k%2?-1:1)*C[b][k]*mpow(b-k,a)%P+P)%P;return r;}
int main(){
	int N,M,x,y;LL A=0;
	C[0][0]=1;
	rep(i,W-1)rep(j,i+1){
		C[i+1][j]=(C[i][j]+C[i+1][j])%P;
		C[i+1][j+1]=(C[i][j]+C[i+1][j+1])%P;
	}
	rep(i,W) rep(j,W) F[i][j]=0;
	scanf("%d%d",&N,&M);
	rep(i,N) scanf("%d",w+i);
	rep(i,N){rep(j,N)E[i][j]=0; E[i][i]=w[i];}
	rep(i,M){scanf("%d%d",&x,&y);x--;E[x][--y]=w[x];}
	rep(k,N) rep(i,N) rep(j,N) E[i][j]=max(E[i][j],min(E[i][k],E[k][j]));
	rep(i,N) rep(j,N) if(w[j]<=E[i][j]) F[w[i]][w[j]]++;
	rep(i,W) rep(j,i+1) if(F[i][j]){A=(A+F[i][j]*calc(i,j))%P;}
	printf("%lld\n",A);
	return 0;
}
0