結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | Shibuyap |
提出日時 | 2021-02-19 23:47:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,728 bytes |
コンパイル時間 | 2,075 ms |
コンパイル使用メモリ | 206,820 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-16 23:55:26 |
合計ジャッジ時間 | 8,028 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 795 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 75 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:24:22: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1001001001001001001' to '1551474729' [-Woverflow] 24 | odd[j] = INF; | ^~~ main.cpp:25:23: warning: overflow in conversion from 'll' {aka 'long long int'} to 'int' changes value from '1001001001001001001' to '1551474729' [-Woverflow] 25 | even[j] = INF; | ^~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) using namespace std; typedef long long int ll; typedef pair<int,int> P; #define yn {puts("Yes");}else{puts("No");} #define MAX_N 200005 const ll INF = 1001001001001001001; int main() { ll n, d; cin >> n >> d; int e[n][n]; string s[n]; rep(i,n) cin >> s[i]; rep(i,n)rep(j,n) e[i][j] = s[i][j] - '0'; int ok = 1; rep(i,n){ int odd[n], even[n]; rep(j,n){ odd[j] = INF; even[j] = INF; } even[i] = 0; queue<int> que; que.push(i); while(que.size()){ int x = que.front() % n; int y = que.front() / n; que.pop(); rep(j,n){ if(e[x][j]){ if(y == 0){ if(odd[j] > even[x]+1){ odd[j] = even[x] + 1; que.push(j+n); } }else{ if(even[j] > odd[x]+1){ even[x] = odd[x] + 1; que.push(j); } } } } } if(d%2==0){ rep(j,n){ if(even[j] > d){ ok = 0; break; } } }else{ rep(j,n){ if(odd[j] > d){ ok = 0; break; } } } if(ok == 0) break; } if(ok) yn; return 0; }