結果
問題 |
No.871 かえるのうた
|
ユーザー |
|
提出日時 | 2019-06-11 22:19:55 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 392 ms / 2,000 ms |
コード長 | 1,313 bytes |
コンパイル時間 | 2,072 ms |
コンパイル使用メモリ | 76,504 KB |
実行使用メモリ | 66,828 KB |
最終ジャッジ日時 | 2024-11-30 10:42:58 |
合計ジャッジ時間 | 11,584 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 49 |
ソースコード
import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; class Main{ public static void main(String args[]) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line[] = br.readLine().split(" "); int n = Integer.parseInt(line[0]), k = Integer.parseInt(line[1])-1; long x[] = new long[n]; long a[] = new long[n]; line = br.readLine().split(" "); for(int i = 0; i < n; i++){ x[i] = Long.parseLong(line[i]); } line = br.readLine().split(" "); for(int i = 0; i < n; i++){ a[i] = Long.parseLong(line[i]); } int l = k, r = k; long ld = x[k]-a[k], rd = x[k]+a[k]; boolean update = true; while(update){ update = false; while(l-1 >= 0 && ld <= x[l-1]){ update = true; l--; ld = Math.min(ld, x[l]-a[l]); rd = Math.max(rd, x[l]+a[l]); } while(r+1 < n && x[r+1] <= rd){ update = true; r++; rd = Math.max(rd, x[r]+a[r]); ld = Math.min(ld, x[r]-a[r]); } } System.out.println(r-l+1); } }