結果
問題 | No.612 Move on grid |
ユーザー | gzlcp |
提出日時 | 2017-12-12 17:10:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 133 ms / 2,500 ms |
コード長 | 1,328 bytes |
コンパイル時間 | 890 ms |
コンパイル使用メモリ | 98,852 KB |
実行使用メモリ | 83,456 KB |
最終ジャッジ日時 | 2024-12-18 00:49:33 |
合計ジャッジ時間 | 3,362 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
ソースコード
#include<iostream> #include<iomanip> #include<math.h> #include<vector> #include<algorithm> #include<set> #include<map> #include<queue> #include<stack> #include<string> #include<bitset> #define INF 1000000000ll #define MOD 1000000007ll #define EPS 1e-10 #define REP(i,m) for(long long i=0; i<m; i++) #define FOR(i,n,m) for(long long i=n; i<m; i++) #define DUMP(a) for(long long dump=0; dump<(ll)a.size(); dump++) { cout<<a[dump]; if(dump!=(ll)a.size()-1) cout<<" "; else cout<<endl; } #define ALL(v) v.begin(),v.end() #define pb push_back using namespace std; typedef long long ll; typedef pair<ll, ll> P; typedef long double ld; int main() { cin.tie(0); ios::sync_with_stdio(false); ll t,a,b,c,d,e; cin>>t>>a>>b>>c>>d>>e; vector<vector<ll>> dp(t,vector<ll>(20001,0)); dp[0][10000+a]++; dp[0][10000-a]++; dp[0][10000+b]++; dp[0][10000-b]++; dp[0][10000+c]++; dp[0][10000-c]++; FOR(i,1,t) { REP(j,20001) { if(j+a<20001&&j+a>=0) dp[i][j]+=dp[i-1][j+a]; if(j-a<20001&&j-a>=0) dp[i][j]+=dp[i-1][j-a]; if(j+b<20001&&j+b>=0) dp[i][j]+=dp[i-1][j+b]; if(j-b<20001&&j-b>=0) dp[i][j]+=dp[i-1][j-b]; if(j+c<20001&&j+c>=0) dp[i][j]+=dp[i-1][j+c]; if(j-c<20001&&j-c>=0) dp[i][j]+=dp[i-1][j-c]; dp[i][j]%=MOD; } } ll ans=0; REP(i,20001) if(i>=d+10000&&i<=e+10000) ans+=dp[t-1][i]; cout<<ans%MOD<<endl; }