제출 #745957

#제출 시각아이디문제언어결과실행 시간메모리
745957vjudge1Fancy Fence (CEOI20_fancyfence)C++17
0 / 100
2 ms340 KiB
#include <bits/stdc++.h> using namespace std; int main(){ long long n; cin >> n; long long x, e, hossz; long long ans = 0; vector<long long> w, h, comp; long long wsum = 0; for(long long i = 0; i < n; i++){ cin >> x; h.push_back(x); } for(long long i = 0; i < n; i++){ cin >> x; wsum += x; w.push_back(x); } for(int i = 0; i < n; i++){ if(h[i] == 2){ if(i == 0) comp.push_back(w[i]); else if(h[i-1] == 2) comp.back() += w[i]; else comp.push_back(w[i]); } } for(int k : comp) { ans += k*(k+1); ans = ans % 1000000007; } /* hossz = (h[0]-1)*w[0]; for(int i = 1; i < n; i++){ if(h[i] == 2){ hossz += w[i]; } else if(h[i-1] == 2){ ans += hossz*(hossz+1); ans = ans % 1000000007; hossz = 0; } // cout << hossz << " "; } */ ans += wsum*(wsum+1)/2; ans = ans % 1000000007; cout << ans; }

컴파일 시 표준 에러 (stderr) 메시지

fancyfence.cpp: In function 'int main()':
fancyfence.cpp:7:18: warning: unused variable 'e' [-Wunused-variable]
    7 |     long long x, e, hossz;
      |                  ^
fancyfence.cpp:7:21: warning: unused variable 'hossz' [-Wunused-variable]
    7 |     long long x, e, hossz;
      |                     ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...