結果
問題 | No.92 逃走経路 |
ユーザー | Ysmr_Ry |
提出日時 | 2014-12-14 11:30:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 1,012 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 43,392 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 21:07:22 |
合計ジャッジ時間 | 963 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:51:19: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wformat=] 51 | printf( "%d\n", v.size() ); | ~^ ~~~~~~~~ | | | | int std::vector<int>::size_type {aka long unsigned int} | %ld main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf( "%d%d%d", &N, &M, &K ); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:23:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf( "%d%d%d", &a, &b, &c ); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:29:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | scanf( "%d", d+i ); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstring> #include<vector> #define repi(i,a,b) for(int i=(a);i<(b);++i) #define rep(i,a) repi(i,0,a) #define repd(i,a) for(int i=(a);i>=0;--i) #define clr(a,v) memset((a),(v),sizeof(a)) #define all(a) (a).begin(), (a).end() typedef std::pair<int, int> P; int N, M, K; int d[1000]; std::vector<P> G[100]; bool dp[1001][100]; int main() { scanf( "%d%d%d", &N, &M, &K ); rep( i, M ) { int a, b, c; scanf( "%d%d%d", &a, &b, &c ); --a; --b; G[a].push_back( P( b, c ) ); G[b].push_back( P( a, c ) ); } rep( i, K ) scanf( "%d", d+i ); rep( j, N ) dp[0][j] = true; rep( i, K ) { rep( j, N ) rep( k, G[j].size() ) { const P &e = G[j][k]; if( e.second != d[i] ) continue; dp[i+1][e.first] |= dp[i][j]; } } std::vector<int> v; rep( j, N ) if( dp[K][j] ) v.push_back( j+1 ); printf( "%d\n", v.size() ); rep( i, v.size() ) printf( "%d%c", v[i], i==v.size()-1?'\n':' ' ); return 0; }