結果
| 問題 |
No.674 n連勤
|
| コンテスト | |
| ユーザー |
ei1333333
|
| 提出日時 | 2017-05-06 03:54:37 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 823 bytes |
| コンパイル時間 | 1,639 ms |
| コンパイル使用メモリ | 164,444 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 12:17:41 |
| 合計ジャッジ時間 | 2,863 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
14 | scanf("%lld %lld", &D, &Q);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
main.cpp:16:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
16 | scanf("%lld %lld", &A[i], &B[i]);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int64;
int main()
{
int64 D, Q, A[30000], B[30000];
vector< int64 > nums;
int64 touch[600000] = {};
scanf("%lld %lld", &D, &Q);
for(int i = 0; i < Q; i++) {
scanf("%lld %lld", &A[i], &B[i]);
nums.push_back(A[i] - 1);
nums.push_back(A[i]);
nums.push_back(B[i]);
}
sort(begin(nums), end(nums));
nums.erase(unique(begin(nums), end(nums)), end(nums));
for(int i = 0; i < Q; i++) {
A[i] = lower_bound(begin(nums), end(nums), A[i]) - begin(nums);
B[i] = lower_bound(begin(nums), end(nums), B[i]) - begin(nums);
}
int64 ret = 0;
for(int i = 0; i < Q; i++) {
int last = -1;
for(int64 j = 0; j < nums.size(); j++) {
if(A[i] <= j && j <= B[i]) touch[j] = true;
}
printf("%lld\n", ret);
}
}
ei1333333