結果
問題 | No.34 砂漠の行商人 |
ユーザー | EmKjp |
提出日時 | 2015-03-02 23:56:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,592 ms / 5,000 ms |
コード長 | 1,684 bytes |
コンパイル時間 | 710 ms |
コンパイル使用メモリ | 88,640 KB |
実行使用メモリ | 108,468 KB |
最終ジャッジ日時 | 2024-06-28 10:14:56 |
合計ジャッジ時間 | 8,447 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
101,120 KB |
testcase_01 | AC | 31 ms
101,092 KB |
testcase_02 | AC | 28 ms
101,248 KB |
testcase_03 | AC | 27 ms
100,992 KB |
testcase_04 | AC | 46 ms
101,632 KB |
testcase_05 | AC | 45 ms
101,504 KB |
testcase_06 | AC | 28 ms
100,992 KB |
testcase_07 | AC | 57 ms
101,544 KB |
testcase_08 | AC | 68 ms
101,760 KB |
testcase_09 | AC | 485 ms
105,344 KB |
testcase_10 | AC | 63 ms
101,760 KB |
testcase_11 | AC | 1,027 ms
107,136 KB |
testcase_12 | AC | 38 ms
101,760 KB |
testcase_13 | AC | 1,592 ms
108,468 KB |
testcase_14 | AC | 1,171 ms
108,136 KB |
testcase_15 | AC | 30 ms
101,376 KB |
testcase_16 | AC | 96 ms
102,912 KB |
testcase_17 | AC | 28 ms
101,248 KB |
testcase_18 | AC | 33 ms
101,500 KB |
testcase_19 | AC | 350 ms
106,368 KB |
testcase_20 | AC | 626 ms
108,032 KB |
testcase_21 | AC | 30 ms
101,284 KB |
testcase_22 | AC | 35 ms
101,888 KB |
testcase_23 | AC | 29 ms
101,504 KB |
testcase_24 | AC | 830 ms
107,484 KB |
testcase_25 | AC | 68 ms
102,144 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:49:31: warning: use of an operand of type ‘bool’ in ‘operator++’ is deprecated [-Wdeprecated] 49 | if(visited[x][y][vital]++) continue; | ~~~~~~~~~~~~~~~~~~~^ main.cpp:36:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | FOR(i,N) FOR(j,N) scanf("%d",&L[i][j]); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> #include<vector> #include<cmath> #include<set> #include<map> #include<stack> #include<queue> #include<numeric> #include<functional> #include<complex> using namespace std; #define BET(a,b,c) ((a)<=(b)&&(b)<(c)) #define FOR(i,n) for(int i=0,i##_end=(int(n));i<i##_end;i++) #define SZ(x) (int)(x.size()) #define ALL(x) (x).begin(),(x).end() #define MP make_pair #define FOR_EACH(it,v) for(__typeof(v.begin()) it=v.begin(),it_end=v.end() ; it != it_end ; it++) typedef vector<int> VI; typedef vector<VI> VVI; int dx[] = {0,1,0,-1}; int dy[] = {1,0,-1,0}; bool visited[100][100][10000+1]; int L[111][111]; int main() { int N,V,sx,sy,gx,gy; cin>>N>>V>>sx>>sy>>gx>>gy; sx--; sy--; gx--; gy--; FOR(i,N) FOR(j,N) scanf("%d",&L[i][j]); queue<int> qu; qu.push(sx); qu.push(sy); qu.push(V); qu.push(0); memset(visited , 0 , sizeof(visited)); while(!qu.empty()){ int x = qu.front(); qu.pop(); int y = qu.front(); qu.pop(); int vital = qu.front(); qu.pop(); int step = qu.front(); qu.pop(); if(vital <= 0) continue; if(visited[x][y][vital]++) continue; if(x == gx && y == gy){ cout<<step<<endl; return 0; } FOR(i,4){ int nx = x + dx[i]; int ny = y + dy[i]; if(BET(0,nx,N) && BET(0,ny,N) && vital >= L[ny][nx]){ qu.push(nx); qu.push(ny); qu.push(vital - L[ny][nx]); qu.push(step+1); } } } puts("-1"); return 0; }