結果
問題 | No.472 平均順位 |
ユーザー | zuvizudar |
提出日時 | 2017-11-03 02:25:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,167 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 88,952 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-22 14:26:48 |
合計ジャッジ時間 | 4,211 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | AC | 14 ms
5,248 KB |
testcase_09 | AC | 36 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 80 ms
5,248 KB |
testcase_12 | AC | 67 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 423 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | AC | 462 ms
5,248 KB |
testcase_17 | AC | 483 ms
5,248 KB |
testcase_18 | AC | 52 ms
5,248 KB |
testcase_19 | WA | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> #include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<memory> #include<functional> #include<set> using namespace std; #define ALL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define F(i,j,k) fill(i[0],i[0]+j*j,k) #define P(p) cout<<(p)<<endl; #define INF 1<<25 typedef long long ll; int dy[8]={1,1,1,0,0,-1,-1,-1}; int dx[8]={-1,0,1,-1,1,-1,0,1}; struct S{ int a,b,c; }; bool asc(const S& left,const S& right){ return left.c > right.c; } int n,p; //int dp[5001][15001]; int be[15001],af[15001]; int main(int argc, char const *argv[]) { cin >> n >> p; rep(i,3*n+1)be[i]=INF; be[p]=0; rep(i, n) { rep(j,3*n+1)af[j]=INF; int v[4]; rep(k, 3) cin >> v[k]; v[3] = 1; rep(j,p+1){ rep(k,4){ if(j>=k){ af[j-k]=min(af[j-k],be[j]+v[k]); } } } swap(be,af); } printf("%.10lf\n", be[0]/(double)n); return 0; }