# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
236729 | VEGAnn | Automobil (COCI17_automobil) | C++14 | 6 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
#define ft first
#define sd second
using namespace std;
const int N = 1010;
const int oo = int(2e9);
const int md = int(1e9) + 7;
unordered_map<int, int> row;
int n, m, k, col[N], inv2 = 500000004, ans = 0;
int mult(int x, int y) { return (1ll * x * y) % md;}
int MULT(int &x, int y) { x = mult(x, y); }
int sum(int x, int y){
x += y;
if (x >= md)
x -= md;
return x;
}
int sub(int x, int y){
x -= y;
if (x < 0)
x += md;
return x;
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef _LOCAL
freopen("in.txt","r",stdin);
#endif // _LOCAL
cin >> n >> m >> k;
fill(col + 1, col + m + 1, 1);
for (; k; k--){
char c; int x, y;
cin >> c >> x >> y;
if (c == 'R'){
if (row.find(x) == row.end())
row[x] = 1;
MULT(row[x], y);
} else {
MULT(col[x], y);
}
}
for (int j = 1; j <= m; j++){
if (col[j] == 0) continue;
int sm = mult(mult(sum(j + j, mult(n - 1, m)), n), inv2);
if (sz(row) > 0) {
for (auto cr : row){
int x = cr.ft, cf = cr.sd;
sm = sub(sm, mult(x - 1, m));
sm = sub(sm, j);
int real_val = sum(mult(x - 1, m), j);
MULT(real_val, cf);
sm = sum(sm, real_val);
}
}
ans = sum(ans, mult(sm, col[j]));
}
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |