結果

問題 No.329 全射
ユーザー ryofjtryofjt
提出日時 2016-09-16 06:45:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 36,072 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 14:00:50
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,812 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 11 ms
6,944 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 20 ms
6,944 KB
testcase_20 AC 17 ms
6,944 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 7 ms
6,944 KB
testcase_25 AC 10 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 4 ms
6,944 KB
testcase_30 AC 4 ms
6,944 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 AC 10 ms
6,940 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 11 ms
6,940 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 8 ms
6,944 KB
testcase_38 AC 9 ms
6,940 KB
testcase_39 AC 10 ms
6,944 KB
testcase_40 AC 11 ms
6,944 KB
testcase_41 AC 9 ms
6,940 KB
testcase_42 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:25:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |         scanf("%d%d", &n, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:27:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |                 scanf("%d", &w[i]);
      |                 ~~~~~^~~~~~~~~~~~~
main.cpp:31:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |                 scanf("%d%d", &a, &b);
      |                 ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>

#define rep(i, n) for(int i = 0; i < (n); ++i)

using namespace std;

typedef long long ll;

const int mod = 1e9 + 7;

int add(int a, int b){
	return (a + b) % mod;
}
int mul(int a, int b){
	return ll(a) * b % mod;
}

int n, m;
int w[200];
int p[200][200];
int s[1001][1001];

int main(){
	scanf("%d%d", &n, &m);
	rep(i, n){
		scanf("%d", &w[i]);
	}
	rep(i, m){
		int a, b;
		scanf("%d%d", &a, &b);
		--a;
		--b;
		p[a][b] = min(w[a], w[b]);
	}

	rep(i, n){
		p[i][i] = w[i];
	}
	rep(k, n){
		rep(i, n){
			rep(j, n){
				p[i][j] = max(p[i][j], min(p[i][k], p[k][j]));
			}
		}
	}

	s[0][0] = 1;
	for(int i = 1; i <= 1000; ++i){
		rep(j, i + 1){
			s[i][j] = mul(j, add(s[i - 1][j], s[i - 1][j - 1]));
		}
	}

	int ans = 0;
	rep(i, n){
		rep(j, n){
			if(p[i][j] >= w[j]){
				ans = add(s[w[i]][w[j]], ans);
			}
		}
	}
	printf("%d\n", ans);
	return 0;
}
0